diff --git a/.github/issue_template.md b/.github/issue_template.md
index b14ba448f1d54f3e7898726999acdd706518cafb..cf35ea2974668ea633149b3063dddc632b36ff50 100644
--- a/.github/issue_template.md
+++ b/.github/issue_template.md
@@ -19,6 +19,6 @@
 - [ ] The Renovate GitHub App
 - [ ] Self-hosted GitHub
 - [ ] Self-hosted GitLab
-- [ ] Self-hosted VSTS
+- [ ] Self-hosted Azure DevOps
 
 #### Please describe the issue:
diff --git a/docs/branches-commits.md b/docs/branches-commits.md
index e1425a533466c600db7ad7c3806a9d623e0cbe87..fe68893e477a6bab5cada71a23709ee3efe93103 100644
--- a/docs/branches-commits.md
+++ b/docs/branches-commits.md
@@ -22,6 +22,6 @@ For GitHub, we use the low-level `git`-based API to manually make the commits an
 
 In GitLab, Merge Request are not automatically closed if you delete the associated branch, so that gives us more flexibility. Therefore the way we update a branch is simply to delete it and then create the branch + commits again, and GitLab immediately reassociates the new (single) commit with the existing PR.
 
-#### VSTS
+#### Azure DevOps
 
-VSTS is implemented similarly to GitLab.
+Azure DevOps is implemented similarly to GitLab.
diff --git a/docs/self-hosting.md b/docs/self-hosting.md
index e9aef69cb69c0dcb3330c47e0a9063f62dbe3ffb..602b61a86ecf7025ce71b244b5332d580d3f202b 100644
--- a/docs/self-hosting.md
+++ b/docs/self-hosting.md
@@ -113,8 +113,8 @@ You can find instructions for Bitbucket AppPasswords [here](https://confluence.a
 
 Note: you should also configure a GitHub token even if your source host is GitLab or Bitbucket, because Renovate will need to perform many queries to github.com in order to retrieve Release Notes.
 
-You can find instructions for VSTS
-[vsts](https://www.visualstudio.com/en-us/docs/integrate/get-started/authentication/pats).
+You can find instructions for Azure DevOps
+[azureDevOps](https://docs.microsoft.com/en-us/azure/devops/integrate/get-started/authentication/pats).
 
 This token needs to be configured via file, environment variable, or CLI. See
 [docs/configuration.md](configuration.md) for details. The simplest way is to expose it as `RENOVATE_TOKEN`.
diff --git a/lib/config/definitions.js b/lib/config/definitions.js
index 96d2512050d84ea5f27a3504b75de04b6f077364..f983ef68d9a61cf22d7ee8b22e31a480182b3e4f 100644
--- a/lib/config/definitions.js
+++ b/lib/config/definitions.js
@@ -967,13 +967,13 @@ const options = [
   {
     name: 'assignees',
     description:
-      'Assignees for Pull Request (username in GitHub/GitLab, email address in VSTS)',
+      'Assignees for Pull Request (username in GitHub/GitLab, email address in Azure DevOps)',
     type: 'list',
   },
   {
     name: 'reviewers',
     description:
-      'Requested reviewers for Pull Requests (username in GitHub/GitLab, email or username in VSTS)',
+      'Requested reviewers for Pull Requests (username in GitHub/GitLab, email or username in Azure DevOps)',
     type: 'list',
   },
   {
diff --git a/lib/platform/azure/azure-got-wrapper.js b/lib/platform/azure/azure-got-wrapper.js
new file mode 100644
index 0000000000000000000000000000000000000000..612ce8b7ee3f175eb45ca4c7a39da9c364808b56
--- /dev/null
+++ b/lib/platform/azure/azure-got-wrapper.js
@@ -0,0 +1,25 @@
+const azure = require('azure-devops-node-api');
+const hostRules = require('../../util/host-rules');
+
+module.exports = {
+  azureObj,
+  gitApi,
+  getCoreApi,
+};
+
+function azureObj() {
+  const config = hostRules.find({ platform: 'azure' }, {});
+  if (!config.token) {
+    throw new Error(`No token found for azure`);
+  }
+  const authHandler = azure.getPersonalAccessTokenHandler(config.token);
+  return new azure.WebApi(config.endpoint, authHandler);
+}
+
+function gitApi() {
+  return azureObj().getGitApi();
+}
+
+function getCoreApi() {
+  return azureObj().getCoreApi();
+}
diff --git a/lib/platform/vsts/vsts-helper.js b/lib/platform/azure/azure-helper.js
similarity index 87%
rename from lib/platform/vsts/vsts-helper.js
rename to lib/platform/azure/azure-helper.js
index 5a329d421d208cb94cdf81d0f5d69e36151e6315..dce52b71daa1c297723015c71d255be367104a1c 100644
--- a/lib/platform/vsts/vsts-helper.js
+++ b/lib/platform/azure/azure-helper.js
@@ -1,11 +1,11 @@
 // @ts-nocheck
 
-const vstsApi = require('./vsts-got-wrapper');
+const azureApi = require('./azure-got-wrapper');
 
 module.exports = {
   getBranchNameWithoutRefsheadsPrefix,
   getRefs,
-  getVSTSBranchObj,
+  getAzureBranchObj,
   getChanges,
   getNewBranchName,
   getFile,
@@ -69,8 +69,8 @@ function getBranchNameWithoutRefsPrefix(branchPath) {
  */
 async function getRefs(repoId, branchName) {
   logger.debug(`getRefs(${repoId}, ${branchName})`);
-  const vstsApiGit = await vstsApi.gitApi();
-  const refs = await vstsApiGit.getRefs(
+  const azureApiGit = await azureApi.gitApi();
+  const refs = await azureApiGit.getRefs(
     repoId,
     null,
     getBranchNameWithoutRefsPrefix(branchName)
@@ -83,11 +83,11 @@ async function getRefs(repoId, branchName) {
  * @param {string} branchName
  * @param {string} from
  */
-async function getVSTSBranchObj(repoId, branchName, from) {
+async function getAzureBranchObj(repoId, branchName, from) {
   const fromBranchName = getNewBranchName(from);
   const refs = await getRefs(repoId, fromBranchName);
   if (refs.length === 0) {
-    logger.debug(`getVSTSBranchObj without a valid from, so initial commit.`);
+    logger.debug(`getAzureBranchObj without a valid from, so initial commit.`);
     return {
       name: getNewBranchName(branchName),
       oldObjectId: '0000000000000000000000000000000000000000',
@@ -146,8 +146,8 @@ async function getChanges(files, repoId, repository, branchName) {
  */
 async function getFile(repoId, repository, filePath, branchName) {
   logger.trace(`getFile(filePath=${filePath}, branchName=${branchName})`);
-  const vstsApiGit = await vstsApi.gitApi();
-  const item = await vstsApiGit.getItemText(
+  const azureApiGit = await azureApi.gitApi();
+  const item = await azureApiGit.getItemText(
     repoId,
     filePath,
     null,
@@ -208,11 +208,11 @@ function max4000Chars(str) {
   return str;
 }
 
-function getRenovatePRFormat(vstsPr) {
-  const pr = vstsPr;
+function getRenovatePRFormat(azurePr) {
+  const pr = azurePr;
 
-  pr.displayNumber = `Pull Request #${vstsPr.pullRequestId}`;
-  pr.number = vstsPr.pullRequestId;
+  pr.displayNumber = `Pull Request #${azurePr.pullRequestId}`;
+  pr.number = azurePr.pullRequestId;
 
   // status
   // export declare enum PullRequestStatus {
@@ -222,9 +222,9 @@ function getRenovatePRFormat(vstsPr) {
   //   Completed = 3,
   //   All = 4,
   // }
-  if (vstsPr.status === 2) {
+  if (azurePr.status === 2) {
     pr.state = 'closed';
-  } else if (vstsPr.status === 3) {
+  } else if (azurePr.status === 3) {
     pr.state = 'merged';
   } else {
     pr.state = 'open';
@@ -239,7 +239,7 @@ function getRenovatePRFormat(vstsPr) {
   //   RejectedByPolicy = 4,
   //   Failure = 5,
   // }
-  if (vstsPr.mergeStatus === 2) {
+  if (azurePr.mergeStatus === 2) {
     pr.isConflicted = true;
   }
 
@@ -250,8 +250,8 @@ function getRenovatePRFormat(vstsPr) {
 
 async function getCommitDetails(commit, repoId) {
   logger.debug(`getCommitDetails(${commit}, ${repoId})`);
-  const vstsApiGit = await vstsApi.gitApi();
-  const results = await vstsApiGit.getCommit(commit, repoId);
+  const azureApiGit = await azureApi.gitApi();
+  const results = await azureApiGit.getCommit(commit, repoId);
   return results;
 }
 
diff --git a/lib/platform/vsts/index.js b/lib/platform/azure/index.js
similarity index 75%
rename from lib/platform/vsts/index.js
rename to lib/platform/azure/index.js
index 818a2fc2410fd124818296b4c8e35b51200c3a87..ca4c5b2ffdb78094f125ad05affa3cf1ced81505 100644
--- a/lib/platform/vsts/index.js
+++ b/lib/platform/azure/index.js
@@ -1,6 +1,6 @@
 // @ts-nocheck //because of logger, we can't ts-check
-const vstsHelper = require('./vsts-helper');
-const vstsApi = require('./vsts-got-wrapper');
+const azureHelper = require('./azure-helper');
+const azureApi = require('./azure-got-wrapper');
 const hostRules = require('../../util/host-rules');
 const { appSlug } = require('../../config/app-strings');
 
@@ -56,25 +56,25 @@ module.exports = {
 };
 
 async function getRepos(token, endpoint) {
-  logger.info('Autodiscovering vsts repositories');
+  logger.info('Autodiscovering Azure DevOps repositories');
   logger.debug('getRepos(token, endpoint)');
-  const opts = hostRules.find({ platform: 'vsts' }, { token, endpoint });
-  hostRules.update({ ...opts, platform: 'vsts', default: true });
-  const vstsApiGit = await vstsApi.gitApi();
-  const repos = await vstsApiGit.getRepositories();
+  const opts = hostRules.find({ platform: 'azure' }, { token, endpoint });
+  hostRules.update({ ...opts, platform: 'azure', default: true });
+  const azureApiGit = await azureApi.gitApi();
+  const repos = await azureApiGit.getRepositories();
   return repos.map(repo => `${repo.project.name}/${repo.name}`);
 }
 
 async function initRepo({ repository, token, endpoint }) {
   logger.debug(`initRepo("${repository}")`);
-  const opts = hostRules.find({ platform: 'vsts' }, { token, endpoint });
-  hostRules.update({ ...opts, platform: 'vsts', default: true });
+  const opts = hostRules.find({ platform: 'azure' }, { token, endpoint });
+  hostRules.update({ ...opts, platform: 'azure', default: true });
   config.repository = repository;
   config.fileList = null;
   config.prList = null;
-  const vstsApiGit = await vstsApi.gitApi();
-  const repos = await vstsApiGit.getRepositories();
-  const names = vstsHelper.getProjectAndRepo(repository);
+  const azureApiGit = await azureApi.gitApi();
+  const repos = await azureApiGit.getRepositories();
+  const names = azureHelper.getProjectAndRepo(repository);
   const repo = repos.filter(
     c =>
       c.name.toLowerCase() === names.repo.toLowerCase() &&
@@ -92,7 +92,7 @@ async function initRepo({ repository, token, endpoint }) {
   logger.debug(`${repository} default branch = ${config.defaultBranch}`);
   config.baseCommitSHA = await getBranchCommit(config.baseBranch);
 
-  // Todo VSTS: Get Merge method
+  // Todo Azure: Get Merge method
   config.mergeMethod = 'merge';
   // if (res.body.allow_rebase_merge) {
   //   config.mergeMethod = 'rebase';
@@ -104,7 +104,7 @@ async function initRepo({ repository, token, endpoint }) {
   //   logger.debug('Could not find allowed merge methods for repo');
   // }
 
-  // Todo VSTS: Get getBranchProtection
+  // Todo Azure: Get getBranchProtection
   config.repoForceRebase = false;
   // try {
   //   const branchProtection = await getBranchProtection(config.baseBranch);
@@ -141,10 +141,10 @@ async function setBaseBranch(branchName) {
 }
 
 async function getBranchCommit(fullBranchName) {
-  const vstsApiGit = await vstsApi.gitApi();
-  const commit = await vstsApiGit.getBranch(
+  const azureApiGit = await azureApi.gitApi();
+  const commit = await azureApiGit.getBranch(
     config.repoId,
-    vstsHelper.getBranchNameWithoutRefsheadsPrefix(fullBranchName)
+    azureHelper.getBranchNameWithoutRefsheadsPrefix(fullBranchName)
   );
   return commit.commit.commitId;
 }
@@ -153,8 +153,8 @@ async function getCommitMessages() {
   logger.debug('getCommitMessages');
   try {
     // @ts-ignore
-    const vstsApiGit = await vstsApi.gitApi();
-    const res = await vstsApiGit.getCommits(config.repoId);
+    const azureApiGit = await azureApi.gitApi();
+    const res = await azureApiGit.getCommits(config.repoId);
     const msg = res.map(commit => commit.comment);
     return msg;
   } catch (err) {
@@ -165,7 +165,7 @@ async function getCommitMessages() {
 
 async function getFile(filePath, branchName = config.baseBranch) {
   logger.trace(`getFile(filePath=${filePath}, branchName=${branchName})`);
-  const f = await vstsHelper.getFile(
+  const f = await azureHelper.getFile(
     config.repoId,
     config.name,
     filePath,
@@ -182,11 +182,11 @@ async function findPr(branchName, prTitle, state = 'all') {
   logger.debug(`findPr(${branchName}, ${prTitle}, ${state})`);
   let prsFiltered = [];
   try {
-    const vstsApiGit = await vstsApi.gitApi();
-    const prs = await vstsApiGit.getPullRequests(config.repoId, null);
+    const azureApiGit = await azureApi.gitApi();
+    const prs = await azureApiGit.getPullRequests(config.repoId, null);
 
     prsFiltered = prs.filter(
-      item => item.sourceRefName === vstsHelper.getNewBranchName(branchName)
+      item => item.sourceRefName === azureHelper.getNewBranchName(branchName)
     );
 
     if (prTitle) {
@@ -194,7 +194,9 @@ async function findPr(branchName, prTitle, state = 'all') {
     }
 
     // update format
-    prsFiltered = prsFiltered.map(item => vstsHelper.getRenovatePRFormat(item));
+    prsFiltered = prsFiltered.map(item =>
+      azureHelper.getRenovatePRFormat(item)
+    );
 
     switch (state) {
       case 'all':
@@ -222,8 +224,8 @@ async function getFileList(branchName = config.baseBranch) {
     if (config.fileList) {
       return config.fileList;
     }
-    const vstsApiGit = await vstsApi.gitApi();
-    const items = await vstsApiGit.getItems(
+    const azureApiGit = await azureApi.gitApi();
+    const items = await azureApiGit.getItems(
       config.repoId,
       null,
       null,
@@ -255,7 +257,7 @@ async function commitFilesToBranch(
   );
 
   // Create the new Branch
-  let branchRef = await vstsHelper.getVSTSBranchObj(
+  let branchRef = await azureHelper.getAzureBranchObj(
     config.repoId,
     branchName,
     parentBranch
@@ -263,22 +265,22 @@ async function commitFilesToBranch(
 
   const isBranchExisting = await branchExists(`refs/heads/${branchName}`);
   if (isBranchExisting) {
-    branchRef = await vstsHelper.getVSTSBranchObj(
+    branchRef = await azureHelper.getAzureBranchObj(
       config.repoId,
       branchName,
       branchName
     );
   }
 
-  const changesInCommit = await vstsHelper.getChanges(
+  const changesInCommit = await azureHelper.getChanges(
     files,
     config.repoId,
     config.name,
     parentBranch
   );
 
-  const vstsApiGit = await vstsApi.gitApi();
-  await vstsApiGit.createPush(
+  const azureApiGit = await azureApi.gitApi();
+  await azureApiGit.createPush(
     {
       commits: [
         {
@@ -299,7 +301,7 @@ async function branchExists(branchName) {
     ? `refs/heads/${branchName}`
     : branchName;
 
-  const branchs = await vstsHelper.getRefs(config.repoId, branchNameToUse);
+  const branchs = await azureHelper.getRefs(config.repoId, branchNameToUse);
   if (branchs.length === 0) {
     return false;
   }
@@ -329,10 +331,10 @@ async function getBranchStatus(branchName, requiredStatusChecks) {
 
 async function getBranchStatusCheck(branchName, context) {
   logger.trace(`getBranchStatusCheck(${branchName}, ${context})`);
-  const vstsApiGit = await vstsApi.gitApi();
-  const branch = await vstsApiGit.getBranch(
+  const azureApiGit = await azureApi.gitApi();
+  const branch = await azureApiGit.getBranch(
     config.repoId,
-    vstsHelper.getBranchNameWithoutRefsheadsPrefix(branchName)
+    azureHelper.getBranchNameWithoutRefsheadsPrefix(branchName)
   );
   if (branch.aheadCount === 0) {
     return 'success';
@@ -345,25 +347,25 @@ async function getPr(pullRequestId) {
   if (!pullRequestId) {
     return null;
   }
-  const vstsApiGit = await vstsApi.gitApi();
-  const prs = await vstsApiGit.getPullRequests(config.repoId, null);
-  const vstsPr = prs.filter(item => item.pullRequestId === pullRequestId);
-  if (vstsPr.length === 0) {
+  const azureApiGit = await azureApi.gitApi();
+  const prs = await azureApiGit.getPullRequests(config.repoId, null);
+  const azurePr = prs.filter(item => item.pullRequestId === pullRequestId);
+  if (azurePr.length === 0) {
     return null;
   }
-  logger.debug(`pr: (${vstsPr[0]})`);
-  const pr = vstsHelper.getRenovatePRFormat(vstsPr[0]);
+  logger.debug(`pr: (${azurePr[0]})`);
+  const pr = azureHelper.getRenovatePRFormat(azurePr[0]);
   return pr;
 }
 
 async function createPr(branchName, title, body, labels, useDefaultBranch) {
-  const sourceRefName = vstsHelper.getNewBranchName(branchName);
+  const sourceRefName = azureHelper.getNewBranchName(branchName);
   const targetRefName = useDefaultBranch
     ? config.defaultBranch
     : config.baseBranch;
-  const description = vstsHelper.max4000Chars(body);
-  const vstsApiGit = await vstsApi.gitApi();
-  const pr = await vstsApiGit.createPullRequest(
+  const description = azureHelper.max4000Chars(body);
+  const azureApiGit = await azureApi.gitApi();
+  const pr = await azureApiGit.createPullRequest(
     {
       sourceRefName,
       targetRefName,
@@ -373,19 +375,19 @@ async function createPr(branchName, title, body, labels, useDefaultBranch) {
     config.repoId
   );
   pr.branchName = branchName;
-  return vstsHelper.getRenovatePRFormat(pr);
+  return azureHelper.getRenovatePRFormat(pr);
 }
 
 async function updatePr(prNo, title, body) {
   logger.debug(`updatePr(${prNo}, ${title}, body)`);
-  const vstsApiGit = await vstsApi.gitApi();
+  const azureApiGit = await azureApi.gitApi();
   const objToUpdate = {
     title,
   };
   if (body) {
-    objToUpdate.description = vstsHelper.max4000Chars(body);
+    objToUpdate.description = azureHelper.max4000Chars(body);
   }
-  await vstsApiGit.updatePullRequest(objToUpdate, config.repoId, prNo);
+  await azureApiGit.updatePullRequest(objToUpdate, config.repoId, prNo);
 }
 
 async function isBranchStale(branchName) {
@@ -393,7 +395,7 @@ async function isBranchStale(branchName) {
   // Check if branch's parent SHA = master SHA
   const branchCommit = await getBranchCommit(branchName);
   logger.debug(`branchCommit=${branchCommit}`);
-  const commitDetails = await vstsHelper.getCommitDetails(
+  const commitDetails = await azureHelper.getCommitDetails(
     branchCommit,
     config.repoId
   );
@@ -408,8 +410,8 @@ async function isBranchStale(branchName) {
 async function ensureComment(issueNo, topic, content) {
   logger.debug(`ensureComment(${issueNo}, ${topic}, content)`);
   const body = `### ${topic}\n\n${content}`;
-  const vstsApiGit = await vstsApi.gitApi();
-  await vstsApiGit.createThread(
+  const azureApiGit = await azureApi.gitApi();
+  await azureApiGit.createThread(
     {
       comments: [{ content: body, commentType: 1, parentCommentId: 0 }],
       status: 1,
@@ -422,8 +424,8 @@ async function ensureComment(issueNo, topic, content) {
 async function ensureCommentRemoval(issueNo, topic) {
   logger.debug(`ensureCommentRemoval(issueNo, topic)(${issueNo}, ${topic})`);
   if (issueNo) {
-    const vstsApiGit = await vstsApi.gitApi();
-    const threads = await vstsApiGit.getThreads(config.repoId, issueNo);
+    const azureApiGit = await azureApi.gitApi();
+    const threads = await azureApiGit.getThreads(config.repoId, issueNo);
     let threadIdFound = null;
 
     threads.forEach(thread => {
@@ -433,7 +435,7 @@ async function ensureCommentRemoval(issueNo, topic) {
     });
 
     if (threadIdFound) {
-      await vstsApiGit.updateThread(
+      await azureApiGit.updateThread(
         {
           status: 4, // close
         },
@@ -447,19 +449,19 @@ async function ensureCommentRemoval(issueNo, topic) {
 
 async function getAllRenovateBranches(branchPrefix) {
   logger.debug(`getAllRenovateBranches(branchPrefix)(${branchPrefix})`);
-  const vstsApiGit = await vstsApi.gitApi();
-  const branches = await vstsApiGit.getBranches(config.repoId);
+  const azureApiGit = await azureApi.gitApi();
+  const branches = await azureApiGit.getBranches(config.repoId);
   return branches.filter(c => c.name.startsWith(branchPrefix)).map(c => c.name);
 }
 
 async function deleteBranch(branchName, abandonAssociatedPr = false) {
   logger.debug(`deleteBranch(branchName)(${branchName})`);
-  const ref = await vstsHelper.getRefs(
+  const ref = await azureHelper.getRefs(
     config.repoId,
-    vstsHelper.getNewBranchName(branchName)
+    azureHelper.getNewBranchName(branchName)
   );
-  const vstsApiGit = await vstsApi.gitApi();
-  await vstsApiGit.updateRefs(
+  const azureApiGit = await azureApi.gitApi();
+  await azureApiGit.updateRefs(
     [
       {
         name: ref[0].name,
@@ -479,8 +481,8 @@ async function deleteBranch(branchName, abandonAssociatedPr = false) {
 // istanbul ignore next
 async function abandonPr(prNo) {
   logger.debug(`abandonPr(prNo)(${prNo})`);
-  const vstsApiGit = await vstsApi.gitApi();
-  await vstsApiGit.updatePullRequest(
+  const azureApiGit = await azureApi.gitApi();
+  await azureApiGit.updatePullRequest(
     {
       status: 2,
     },
@@ -491,29 +493,29 @@ async function abandonPr(prNo) {
 
 async function getBranchLastCommitTime(branchName) {
   logger.debug(`getBranchLastCommitTime(branchName)(${branchName})`);
-  const vstsApiGit = await vstsApi.gitApi();
-  const branch = await vstsApiGit.getBranch(
+  const azureApiGit = await azureApi.gitApi();
+  const branch = await azureApiGit.getBranch(
     config.repoId,
-    vstsHelper.getBranchNameWithoutRefsheadsPrefix(branchName)
+    azureHelper.getBranchNameWithoutRefsheadsPrefix(branchName)
   );
   return branch.commit.committer.date;
 }
 
 function setBranchStatus(branchName, context, description, state, targetUrl) {
   logger.debug(
-    `setBranchStatus(${branchName}, ${context}, ${description}, ${state}, ${targetUrl}) - Not supported by VSTS (yet!)`
+    `setBranchStatus(${branchName}, ${context}, ${description}, ${state}, ${targetUrl}) - Not supported by Azure DevOps (yet!)`
   );
 }
 
 async function mergeBranch(branchName) {
   logger.info(
-    `mergeBranch(branchName)(${branchName}) - Not supported by VSTS (yet!)`
+    `mergeBranch(branchName)(${branchName}) - Not supported by Azure DevOps (yet!)`
   );
   await null;
 }
 
 async function mergePr(pr) {
-  logger.info(`mergePr(pr)(${pr}) - Not supported by VSTS (yet!)`);
+  logger.info(`mergePr(pr)(${pr}) - Not supported by Azure DevOps (yet!)`);
   await null;
 }
 
@@ -560,16 +562,16 @@ async function addAssignees(issueNo, assignees) {
  */
 async function addReviewers(prNo, reviewers) {
   logger.trace(`addReviewers(${prNo}, ${reviewers})`);
-  const vstsApiGit = await vstsApi.gitApi();
-  const vstsApiCore = await vstsApi.getCoreApi();
-  const repos = await vstsApiGit.getRepositories();
+  const azureApiGit = await azureApi.gitApi();
+  const azureApiCore = await azureApi.getCoreApi();
+  const repos = await azureApiGit.getRepositories();
   const repo = repos.filter(c => c.id === config.repoId)[0];
-  const teams = await vstsApiCore.getTeams(repo.project.id);
+  const teams = await azureApiCore.getTeams(repo.project.id);
   const members = await Promise.all(
     teams.map(
       async t =>
         /* eslint-disable no-return-await */
-        await vstsApiCore.getTeamMembers(repo.project.id, t.id)
+        await azureApiCore.getTeamMembers(repo.project.id, t.id)
     )
   );
 
@@ -591,7 +593,7 @@ async function addReviewers(prNo, reviewers) {
 
   await Promise.all(
     ids.map(async obj => {
-      await vstsApiGit.createPullRequestReviewer(
+      await azureApiGit.createPullRequestReviewer(
         {},
         config.repoId,
         prNo,
@@ -609,7 +611,9 @@ function deleteLabel() {
 
 // to become async?
 function getPrFiles(prNo) {
-  logger.info(`getPrFiles(prNo)(${prNo}) - Not supported by VSTS (yet!)`);
+  logger.info(
+    `getPrFiles(prNo)(${prNo}) - Not supported by Azure DevOps (yet!)`
+  );
   return [];
 }
 
diff --git a/lib/platform/index.js b/lib/platform/index.js
index b701f835042c16a37135d3381245eefd5a240734..592f38e84ef4e39e14832ccd84a79a6c66a573d1 100644
--- a/lib/platform/index.js
+++ b/lib/platform/index.js
@@ -3,7 +3,7 @@ const platforms = new Map([
   ['bitbucket', require('./bitbucket')],
   ['github', require('./github')],
   ['gitlab', require('./gitlab')],
-  ['vsts', require('./vsts')],
+  ['azure', require('./azure')],
 ]);
 /* eslint-enable global-require */
 
diff --git a/lib/platform/vsts/vsts-got-wrapper.js b/lib/platform/vsts/vsts-got-wrapper.js
deleted file mode 100644
index df7112684e9e71c393b5359d81ed649dc4c55ac5..0000000000000000000000000000000000000000
--- a/lib/platform/vsts/vsts-got-wrapper.js
+++ /dev/null
@@ -1,25 +0,0 @@
-const vsts = require('azure-devops-node-api');
-const hostRules = require('../../util/host-rules');
-
-module.exports = {
-  vstsObj,
-  gitApi,
-  getCoreApi,
-};
-
-function vstsObj() {
-  const config = hostRules.find({ platform: 'vsts' }, {});
-  if (!config.token) {
-    throw new Error(`No token found for vsts`);
-  }
-  const authHandler = vsts.getPersonalAccessTokenHandler(config.token);
-  return new vsts.WebApi(config.endpoint, authHandler);
-}
-
-function gitApi() {
-  return vstsObj().getGitApi();
-}
-
-function getCoreApi() {
-  return vstsObj().getCoreApi();
-}
diff --git a/lib/util/host-rules.js b/lib/util/host-rules.js
index 39631e786b85664785f0707ff682a6e23cfd8def..5494e965ca7130fd1a06bc98a3726a5a507dabd1 100644
--- a/lib/util/host-rules.js
+++ b/lib/util/host-rules.js
@@ -4,7 +4,7 @@ const defaults = {
   bitbucket: { name: 'Bitbucket', endpoint: 'https://api.bitbucket.org/' },
   github: { name: 'GitHub', endpoint: 'https://api.github.com/' },
   gitlab: { name: 'GitLab', endpoint: 'https://gitlab.com/api/v4/' },
-  vsts: { name: 'VSTS' },
+  azure: { name: 'Azure DevOps' },
 };
 
 module.exports = {
diff --git a/lib/workers/branch/parent.js b/lib/workers/branch/parent.js
index 010087448b6899661475c8314c89d8c85a8c575b..42c227f42e69cfc20ce6624985833568ed975fb3 100644
--- a/lib/workers/branch/parent.js
+++ b/lib/workers/branch/parent.js
@@ -57,7 +57,7 @@ async function getParentBranch(config) {
     if (pr.canRebase) {
       logger.info(`Branch is not mergeable and needs rebasing`);
       // TODO: Move this down to api library
-      if (config.isGitLab || config.isVsts) {
+      if (config.isGitLab || config.isAzure) {
         logger.info(`Deleting unmergeable branch in order to recreate/rebase`);
         await platform.deleteBranch(branchName);
       }
diff --git a/lib/workers/global/index.js b/lib/workers/global/index.js
index 581cacd3caefee1f063e18cfab53cdcb09f9bc1c..abb9ce0edb087b7d9daea7a54216ef233be9d199 100644
--- a/lib/workers/global/index.js
+++ b/lib/workers/global/index.js
@@ -78,6 +78,6 @@ function getRepositoryConfig(globalConfig, repository) {
   repoConfig.isBitbucket = repoConfig.platform === 'bitbucket';
   repoConfig.isGitHub = repoConfig.platform === 'github';
   repoConfig.isGitLab = repoConfig.platform === 'gitlab';
-  repoConfig.isVsts = repoConfig.platform === 'vsts';
+  repoConfig.isAzure = repoConfig.platform === 'azure';
   return configParser.filterConfig(repoConfig, 'repository');
 }
diff --git a/readme.md b/readme.md
index 83cffff7b870b3e6061009e9b4d8ecb0032c2e7c..ac3a7ae47dac0df78971ce3293beb86334b770eb 100644
--- a/readme.md
+++ b/readme.md
@@ -17,7 +17,7 @@ Automated dependency updates. Multi-platform and multi-language.
 - Bot behaviour is extremely customisable via configuration files (config as code)
 - Use eslint-like shared config presets for ease of use and simplifying configuration
 - Lock files are natively supported and updated in the same commit, including immediately resolving conflicts whenever PRs are merged
-- Supports GitHub, GitLab, Bitbucket Cloud (beta release) and VSTS.
+- Supports GitHub, GitLab, Bitbucket Cloud (beta release) and Azure DevOps.
 - Open source (installable via npm/yarn or Docker Hub) so can be self-hosted or used via GitHub App
 
 ## Who Uses Renovate?
diff --git a/test/_fixtures/github/graphql/pullrequest-1.json b/test/_fixtures/github/graphql/pullrequest-1.json
index ccf390af6072578ead3431e552367fbae6170e9c..b1ca641abdf969a1d78ef0ba9d81d676a873e137 100644
--- a/test/_fixtures/github/graphql/pullrequest-1.json
+++ b/test/_fixtures/github/graphql/pullrequest-1.json
@@ -108,7 +108,7 @@
           {
             "number": 2086,
             "headRefName": "fix/deletePRafterDeleteBranch",
-            "title": "feat(vsts): abandon pr after delete branch",
+            "title": "feat(azure): abandon pr after delete branch",
             "mergeable": "MERGEABLE",
             "mergeStateStatus": "BEHIND",
             "commits": {
diff --git a/test/_fixtures/npm/typescript.json b/test/_fixtures/npm/typescript.json
index fd28447867964a2a7487413433b12c364163aa78..1fe419a8232b907539e3d37b5972d96f27f6dc58 100644
--- a/test/_fixtures/npm/typescript.json
+++ b/test/_fixtures/npm/typescript.json
@@ -1 +1 @@
-{"_id":"typescript","_rev":"1417-71b6d5230089bcafa087860818dc1287","name":"typescript","description":"TypeScript is a language for application scale JavaScript development","dist-tags":{"latest":"3.0.1","next":"3.1.0-dev.20180813","beta":"2.0.0","rc":"3.0.0-rc","insiders":"3.0.1-insiders.20180726"},"versions":{"0.8.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"0.8.0","description":"TypeScript is a language for application scale JavaScript development","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"bugs":{"url":"http://typescript.codeplex.com/workitem/list/basic"},"repository":{"type":"git","url":"https://git01.codeplex.com/TypeScript"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc"},"_id":"typescript@0.8.0","dist":{"shasum":"e1725d0ebd476eed6c38fda07fdf6942e0f22a0a","tarball":"https://registry.npmjs.org/typescript/-/typescript-0.8.0.tgz"},"_npmVersion":"1.1.61","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{}},"0.8.1":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"0.8.1","licenses":[{"type":"Apache License 2.0","url":"http://typescript.codeplex.com/license"}],"description":"TypeScript is a language for application scale JavaScript development","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"bugs":{"url":"http://typescript.codeplex.com/workitem/list/basic"},"repository":{"type":"git","url":"https://git01.codeplex.com/typescript"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc"},"engines":{"node":">=0.8.0"},"_id":"typescript@0.8.1","dist":{"shasum":"9499f7fe4f4e56010a8c14a5ca000eeb9b5dd4eb","tarball":"https://registry.npmjs.org/typescript/-/typescript-0.8.1.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{}},"0.8.1-1":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"0.8.1-1","licenses":[{"type":"Apache License 2.0","url":"http://typescript.codeplex.com/license"}],"description":"TypeScript is a language for application scale JavaScript development","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"bugs":{"url":"http://typescript.codeplex.com/workitem/list/basic"},"repository":{"type":"git","url":"https://git01.codeplex.com/typescript"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc"},"engines":{"node":">=0.8.0"},"_id":"typescript@0.8.1-1","dist":{"shasum":"34d5563992404abb5eb9fac6a120961639935d77","tarball":"https://registry.npmjs.org/typescript/-/typescript-0.8.1-1.tgz"},"_npmVersion":"1.1.65","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{}},"0.8.2":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"0.8.2","licenses":[{"type":"Apache License 2.0","url":"http://typescript.codeplex.com/license"}],"description":"TypeScript is a language for application scale JavaScript development","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"bugs":{"url":"http://typescript.codeplex.com/workitem/list/basic"},"repository":{"type":"git","url":"https://git01.codeplex.com/typescript"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest"},"_id":"typescript@0.8.2","dist":{"shasum":"8894a39e4f27547973162bda165f88d57e7c9d5e","tarball":"https://registry.npmjs.org/typescript/-/typescript-0.8.2.tgz"},"_npmVersion":"1.1.65","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{}},"0.8.3":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"0.8.3","licenses":[{"type":"Apache License 2.0","url":"http://typescript.codeplex.com/license"}],"description":"TypeScript is a language for application scale JavaScript development","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"bugs":{"url":"http://typescript.codeplex.com/workitem/list/basic"},"repository":{"type":"git","url":"https://git01.codeplex.com/typescript"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest"},"_id":"typescript@0.8.3","dist":{"shasum":"a16a4d5ad97bb35b06de3b9c9fb6b03b68fb00e4","tarball":"https://registry.npmjs.org/typescript/-/typescript-0.8.3.tgz"},"_npmVersion":"1.1.63","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{}},"0.9.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"0.9.0","licenses":[{"type":"Apache License 2.0","url":"http://typescript.codeplex.com/license"}],"description":"TypeScript is a language for application scale JavaScript development","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"bugs":{"url":"http://typescript.codeplex.com/workitem/list/basic"},"repository":{"type":"git","url":"https://git01.codeplex.com/typescript"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest"},"_id":"typescript@0.9.0","dist":{"shasum":"a01a5e6fdd643c7639fe3145907e0d5365665eab","tarball":"https://registry.npmjs.org/typescript/-/typescript-0.9.0.tgz"},"_from":".","_npmVersion":"1.2.30","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{}},"0.9.0-1":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"0.9.0-1","licenses":[{"type":"Apache License 2.0","url":"http://typescript.codeplex.com/license"}],"description":"TypeScript is a language for application scale JavaScript development","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"bugs":{"url":"http://typescript.codeplex.com/workitem/list/basic"},"repository":{"type":"git","url":"https://git01.codeplex.com/typescript"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest"},"_id":"typescript@0.9.0-1","dist":{"shasum":"921e05ddaf9464cae6e5283326d3179c97ee5d22","tarball":"https://registry.npmjs.org/typescript/-/typescript-0.9.0-1.tgz"},"_from":".","_npmVersion":"1.2.30","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{}},"0.9.1":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"0.9.1","licenses":[{"type":"Apache License 2.0","url":"http://typescript.codeplex.com/license"}],"description":"TypeScript is a language for application scale JavaScript development","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"bugs":{"url":"http://typescript.codeplex.com/workitem/list/basic"},"repository":{"type":"git","url":"https://git01.codeplex.com/typescript"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest"},"_id":"typescript@0.9.1","dist":{"shasum":"8615501483c8034358059ddbe3dff31a7e1c791e","tarball":"https://registry.npmjs.org/typescript/-/typescript-0.9.1.tgz"},"_npmVersion":"1.1.65","_npmUser":{"name":"typescript","email":"jont@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{}},"0.9.1-1":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"0.9.1-1","licenses":[{"type":"Apache License 2.0","url":"http://typescript.codeplex.com/license"}],"description":"TypeScript is a language for application scale JavaScript development","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"bugs":{"url":"http://typescript.codeplex.com/workitem/list/basic"},"repository":{"type":"git","url":"https://git01.codeplex.com/typescript"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest"},"_id":"typescript@0.9.1-1","dist":{"shasum":"ee56e64777f6d2c25e369b37f3842991f8f74746","tarball":"https://registry.npmjs.org/typescript/-/typescript-0.9.1-1.tgz"},"_from":".","_npmVersion":"1.3.8","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{}},"0.9.5":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"0.9.5","licenses":[{"type":"Apache License 2.0","url":"http://typescript.codeplex.com/license"}],"description":"TypeScript is a language for application scale JavaScript development","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"bugs":{"url":"http://typescript.codeplex.com/workitem/list/basic"},"repository":{"type":"git","url":"https://git01.codeplex.com/typescript"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest"},"_id":"typescript@0.9.5","dist":{"shasum":"85ad88dfa75718320c6a0c0fa555e39ce8b88252","tarball":"https://registry.npmjs.org/typescript/-/typescript-0.9.5.tgz"},"_from":".","_npmVersion":"1.3.11","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{}},"0.9.7":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"0.9.7","licenses":[{"type":"Apache License 2.0","url":"http://typescript.codeplex.com/license"}],"description":"TypeScript is a language for application scale JavaScript development","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"bugs":{"url":"http://typescript.codeplex.com/workitem/list/basic"},"repository":{"type":"git","url":"https://git01.codeplex.com/typescript"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest"},"_id":"typescript@0.9.7","dist":{"shasum":"6a31e1ddd7ccd44c63c416bab5f21d58dbb3cad4","tarball":"https://registry.npmjs.org/typescript/-/typescript-0.9.7.tgz"},"_from":".","_npmVersion":"1.2.18","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{}},"1.0.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.0.0","licenses":[{"type":"Apache License 2.0","url":"http://typescript.codeplex.com/license"}],"description":"TypeScript is a language for application scale JavaScript development","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"bugs":{"url":"http://typescript.codeplex.com/workitem/list/basic"},"repository":{"type":"git","url":"https://git01.codeplex.com/typescript"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest"},"_id":"typescript@1.0.0","dist":{"shasum":"5720a3d684560d19b7f58034c67e8384fe2f83ad","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.0.0.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{}},"1.0.1":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.0.1","licenses":[{"type":"Apache License 2.0","url":"http://typescript.codeplex.com/license"}],"description":"TypeScript is a language for application scale JavaScript development","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"bugs":{"url":"http://typescript.codeplex.com/workitem/list/basic"},"repository":{"type":"git","url":"https://git01.codeplex.com/typescript"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest"},"_id":"typescript@1.0.1","dist":{"shasum":"e8eacde3084a091d3fe29b60ac5862252662a25a","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.0.1.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{}},"1.1.0-1":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.1.0-1","licenses":[{"type":"Apache License 2.0","url":"https://github.com/Microsoft/TypeScript/blob/master/LICENSE.txt"}],"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":"https://github.com/Microsoft/TypeScript.git"},"preferGlobal":true,"main":"./bin/tsc.js","bin":{"tsc":"./bin/tsc"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","codeclimate-test-reporter":"latest"},"scripts":{"test":"jake generate-code-coverage"},"gitHead":"4d63fde84a48561f3d886a1e46b7eadb92fbfbbc","_id":"typescript@1.1.0-1","_shasum":"ad83fb48dd52312564fc795fb2e1ecc43d5e9d6e","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ad83fb48dd52312564fc795fb2e1ecc43d5e9d6e","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.1.0-1.tgz"},"directories":{}},"1.3.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.3.0","licenses":[{"type":"Apache License 2.0","url":"https://github.com/Microsoft/TypeScript/blob/master/LICENSE.txt"}],"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":"https://github.com/Microsoft/TypeScript.git"},"preferGlobal":true,"main":"./bin/tsc.js","bin":{"tsc":"./bin/tsc"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","codeclimate-test-reporter":"latest"},"scripts":{"test":"jake generate-code-coverage"},"gitHead":"39daf6cfbeb627b5aca5106977760e4272c67b8f","_id":"typescript@1.3.0","_shasum":"b48262ac7444971b447ffc6bb56c69854eef02e1","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"b48262ac7444971b447ffc6bb56c69854eef02e1","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.3.0.tgz"},"directories":{}},"1.4.1":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.4.1","licenses":[{"type":"Apache License 2.0","url":"https://github.com/Microsoft/TypeScript/blob/master/LICENSE.txt"}],"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":"https://github.com/Microsoft/TypeScript.git"},"preferGlobal":true,"main":"./bin/typescriptServices.js","bin":{"tsc":"./bin/tsc"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","codeclimate-test-reporter":"latest"},"scripts":{"test":"jake generate-code-coverage"},"gitHead":"3ab3f916c00755a1d9937f7116d1e9a80ddf2ef3","_id":"typescript@1.4.1","_shasum":"eb4da986d1b7f01452eafb57559e0cc8f516cd48","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"eb4da986d1b7f01452eafb57559e0cc8f516cd48","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.4.1.tgz"},"directories":{}},"1.5.0-alpha":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.5.0-alpha","licenses":[{"type":"Apache License 2.0","url":"https://github.com/Microsoft/TypeScript/blob/master/LICENSE.txt"}],"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":"https://github.com/Microsoft/TypeScript.git"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest"},"scripts":{"test":"jake runtests"},"gitHead":"b18dd53242df31163390c411ac7ab5e9c282fea2","_id":"typescript@1.5.0-alpha","_shasum":"3186ae01d409d9dd924eb35c57e90c2013b97497","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"3186ae01d409d9dd924eb35c57e90c2013b97497","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.5.0-alpha.tgz"},"directories":{}},"1.5.0-beta":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.5.0-beta","licenses":[{"type":"Apache License 2.0","url":"https://github.com/Microsoft/TypeScript/blob/master/LICENSE.txt"}],"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":"https://github.com/Microsoft/TypeScript.git"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest"},"scripts":{"test":"jake runtests"},"gitHead":"c233073d02536b33b3848541b538ad762c4729ba","_id":"typescript@1.5.0-beta","_shasum":"702cfc65692538bd5de273ffd49a86d5fc37598f","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"702cfc65692538bd5de273ffd49a86d5fc37598f","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.5.0-beta.tgz"},"directories":{}},"1.5.3":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.5.3","licenses":[{"type":"Apache License 2.0","url":"https://github.com/Microsoft/TypeScript/blob/master/LICENSE.txt"}],"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"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest"},"scripts":{"test":"jake runtests"},"gitHead":"a24aa6f57d281bafd3535f0f4c3f492364a8b4d6","_id":"typescript@1.5.3","_shasum":"ce35e55f75b7a8d0ed571b503bd0a57157e523f7","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"ce35e55f75b7a8d0ed571b503bd0a57157e523f7","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.5.3.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{}},"1.6.0-dev.20150722.1":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150722.1","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":"https://github.com/Microsoft/TypeScript.git"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","tslint":"latest"},"scripts":{"test":"jake runtests"},"gitHead":"50198247bbd8093923aead123617d9c0c1eae4db","_id":"typescript@1.6.0-dev.20150722.1","_shasum":"40b74fbed0edd6d1dcab45a83a39f43bd612505d","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"40b74fbed0edd6d1dcab45a83a39f43bd612505d","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150722.1.tgz"},"directories":{}},"1.6.0-dev.20150723":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150723","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":"https://github.com/Microsoft/TypeScript.git"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"test":"jake runtests"},"gitHead":"3805500e842ceb08d01022dacb183b38b64a4b9a","_id":"typescript@1.6.0-dev.20150723","_shasum":"c200155ff7c85613209f9d8da193bfd1f48f0202","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"c200155ff7c85613209f9d8da193bfd1f48f0202","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150723.tgz"},"directories":{}},"1.6.0-dev.20150724":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150724","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":"https://github.com/Microsoft/TypeScript.git"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"test":"jake runtests"},"gitHead":"e1fa3c551502a55d622f957e41dbeead53e07f6a","_id":"typescript@1.6.0-dev.20150724","_shasum":"d81057ea6f27b942c60f9aac686e041754bb2667","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d81057ea6f27b942c60f9aac686e041754bb2667","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150724.tgz"},"directories":{}},"1.6.0-dev.20150725":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150725","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":"https://github.com/Microsoft/TypeScript.git"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"test":"jake runtests"},"gitHead":"5bb2e2f584985b6b66a5ac337578fd1982f666c5","_id":"typescript@1.6.0-dev.20150725","_shasum":"67819661dc1ebd3b7c79d64646ef81e93857daea","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"67819661dc1ebd3b7c79d64646ef81e93857daea","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150725.tgz"},"directories":{}},"1.6.0-dev.20150726":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150726","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":"https://github.com/Microsoft/TypeScript.git"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"test":"jake runtests"},"gitHead":"5bb2e2f584985b6b66a5ac337578fd1982f666c5","_id":"typescript@1.6.0-dev.20150726","_shasum":"4351781fc41a46c4a6930295a67a41fe34e1fb2e","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4351781fc41a46c4a6930295a67a41fe34e1fb2e","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150726.tgz"},"directories":{}},"1.6.0-dev.20150727":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150727","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":"https://github.com/Microsoft/TypeScript.git"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"test":"jake runtests"},"gitHead":"5bb2e2f584985b6b66a5ac337578fd1982f666c5","_id":"typescript@1.6.0-dev.20150727","_shasum":"b36f0e2217075742e0899117d1be8b35fc584e75","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"b36f0e2217075742e0899117d1be8b35fc584e75","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150727.tgz"},"directories":{}},"1.6.0-dev.20150728":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150728","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":"https://github.com/Microsoft/TypeScript.git"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"test":"jake runtests"},"gitHead":"d0bc070fb8bcd90947f3f2005647c074736ec356","_id":"typescript@1.6.0-dev.20150728","_shasum":"4a3f6953984d1ca547949b4d7eb651a9da12f70e","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4a3f6953984d1ca547949b4d7eb651a9da12f70e","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150728.tgz"},"directories":{}},"1.6.0-dev.20150729":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150729","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":"https://github.com/Microsoft/TypeScript.git"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"test":"jake runtests"},"gitHead":"0a9fb1a7b5c77c070beed83c14478ecd01d2daef","_id":"typescript@1.6.0-dev.20150729","_shasum":"2d19bc8a55c3af022726a2c6460e486cd87f6a48","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"2d19bc8a55c3af022726a2c6460e486cd87f6a48","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150729.tgz"},"directories":{}},"1.6.0-dev.20150730":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150730","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":"https://github.com/Microsoft/TypeScript.git"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"test":"jake runtests"},"gitHead":"97e7b073f30ac1b399243b5299e6869edb0f36ec","_id":"typescript@1.6.0-dev.20150730","_shasum":"973fe7336b6b8dd7e4a5a2b7fd198311b37f34aa","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"973fe7336b6b8dd7e4a5a2b7fd198311b37f34aa","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150730.tgz"},"directories":{}},"1.6.0-dev.20150731":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150731","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"test":"jake runtests"},"gitHead":"7e9e920d1e1dc664ac170650fc93e21b2c616520","_id":"typescript@1.6.0-dev.20150731","_shasum":"6a74b96a291d483315ef0fcfc0b6566f4289d9b5","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"6a74b96a291d483315ef0fcfc0b6566f4289d9b5","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150731.tgz"},"directories":{}},"1.6.0-dev.20150801":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150801","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"gitHead":"a4a1a51db6968bd13c8be02af4900083b2f0584c","_id":"typescript@1.6.0-dev.20150801","_shasum":"cb233850728db553cddb141036316579699427df","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"cb233850728db553cddb141036316579699427df","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150801.tgz"},"directories":{}},"1.6.0-dev.20150802":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150802","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"gitHead":"a4a1a51db6968bd13c8be02af4900083b2f0584c","_id":"typescript@1.6.0-dev.20150802","_shasum":"8f10759b983b26152e21c4b2ff890d3fa09c4064","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8f10759b983b26152e21c4b2ff890d3fa09c4064","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150802.tgz"},"directories":{}},"1.6.0-dev.20150803":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150803","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"gitHead":"a4a1a51db6968bd13c8be02af4900083b2f0584c","_id":"typescript@1.6.0-dev.20150803","_shasum":"48dd162cf29826abbb32fea06dc5760427f61d07","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"48dd162cf29826abbb32fea06dc5760427f61d07","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150803.tgz"},"directories":{}},"1.6.0-dev.20150804":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150804","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"gitHead":"4c7b214a69c97eb1746b94712ff9a4c2202e2dca","_id":"typescript@1.6.0-dev.20150804","_shasum":"06dc84cb94f1236b2963ffeda137b6b581cca5a7","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"06dc84cb94f1236b2963ffeda137b6b581cca5a7","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150804.tgz"},"directories":{}},"1.6.0-dev.20150805":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150805","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"gitHead":"bb3fb7d98b4ac4cd62474dde15c226b26af30b5f","_id":"typescript@1.6.0-dev.20150805","_shasum":"f8a038719cb699071e9d77f658dbf005923645c4","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f8a038719cb699071e9d77f658dbf005923645c4","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150805.tgz"},"directories":{}},"1.6.0-dev.20150806":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150806","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"gitHead":"2b8ef5e6fd252dafedeb02a17bc2fbe902be1d8a","_id":"typescript@1.6.0-dev.20150806","_shasum":"b98c9b8ac5424b12b0e97face408a7ab2320c192","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"b98c9b8ac5424b12b0e97face408a7ab2320c192","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150806.tgz"},"directories":{}},"1.6.0-dev.20150807":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150807","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"gitHead":"2f9248386e3169d2ed161ed9034d6bb4e61bf688","_id":"typescript@1.6.0-dev.20150807","_shasum":"3bb9bc5a929cc073f18759b1690a72ca15133f0a","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"3bb9bc5a929cc073f18759b1690a72ca15133f0a","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150807.tgz"},"directories":{}},"1.6.0-dev.20150808":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150808","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"gitHead":"92f152cb8e9f132234727da9882763f08e13ec34","_id":"typescript@1.6.0-dev.20150808","_shasum":"4edbba25c7f8a9ac7ba2225eed2b09bb8adebb29","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4edbba25c7f8a9ac7ba2225eed2b09bb8adebb29","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150808.tgz"},"directories":{}},"1.6.0-dev.20150809":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150809","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"gitHead":"92f152cb8e9f132234727da9882763f08e13ec34","_id":"typescript@1.6.0-dev.20150809","_shasum":"3e12d787d11e0060804c125eb6e3584ba4e60c11","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"3e12d787d11e0060804c125eb6e3584ba4e60c11","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150809.tgz"},"directories":{}},"1.6.0-dev.20150810":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150810","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"gitHead":"92f152cb8e9f132234727da9882763f08e13ec34","_id":"typescript@1.6.0-dev.20150810","_shasum":"2c9ae9563832357b6357e42d5ff87d1b71175f12","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"2c9ae9563832357b6357e42d5ff87d1b71175f12","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150810.tgz"},"directories":{}},"1.6.0-dev.20150811":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150811","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"gitHead":"586abacec4e9c2e53aa9eda4f8632d03760148a7","_id":"typescript@1.6.0-dev.20150811","_shasum":"84e7632a069d6434d5619e2734b42317d7ef3b71","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"84e7632a069d6434d5619e2734b42317d7ef3b71","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150811.tgz"},"directories":{}},"1.6.0-dev.20150812":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150812","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"gitHead":"7c8da422302d4e46bdb38547a1e107df534173df","_id":"typescript@1.6.0-dev.20150812","_shasum":"a37cb03e0e10c71b913a104fe64e2e7ae1d7666e","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a37cb03e0e10c71b913a104fe64e2e7ae1d7666e","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150812.tgz"},"directories":{}},"1.6.0-dev.20150813":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150813","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"gitHead":"f92aa8681a3298b1505b1867fad9cd7c674d1604","_id":"typescript@1.6.0-dev.20150813","_shasum":"a82d906a18646db26ac17aa97aa53b5770ced1f0","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a82d906a18646db26ac17aa97aa53b5770ced1f0","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150813.tgz"},"directories":{}},"1.6.0-dev.20150814":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150814","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"gitHead":"e34238cb9232a01abf2f5ab29ea62745535bddf8","_id":"typescript@1.6.0-dev.20150814","_shasum":"8ac6894ee580d0fb92b991c9347f799deb164f64","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8ac6894ee580d0fb92b991c9347f799deb164f64","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150814.tgz"},"directories":{}},"1.6.0-dev.20150815":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150815","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"53239d4a8bff80b7ae802a9a0392edd91d1a1295","_id":"typescript@1.6.0-dev.20150815","_shasum":"8a49600339beda83155a24557d1b27c83930867b","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8a49600339beda83155a24557d1b27c83930867b","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150815.tgz"},"directories":{}},"1.6.0-dev.20150816":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150816","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"53239d4a8bff80b7ae802a9a0392edd91d1a1295","_id":"typescript@1.6.0-dev.20150816","_shasum":"52eb1f17853fa9ae7992be442fbea1f5c2d2a0cd","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"52eb1f17853fa9ae7992be442fbea1f5c2d2a0cd","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150816.tgz"},"directories":{}},"1.6.0-dev.20150817":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150817","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"53239d4a8bff80b7ae802a9a0392edd91d1a1295","_id":"typescript@1.6.0-dev.20150817","_shasum":"7011b8db31f5fe3ec0fe6c3be756e8c13ed4a9cc","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"7011b8db31f5fe3ec0fe6c3be756e8c13ed4a9cc","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150817.tgz"},"directories":{}},"1.6.0-dev.20150818":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150818","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e86f20785925b0b0c0f9a54f392f92ca8124eb14","_id":"typescript@1.6.0-dev.20150818","_shasum":"7a49836433b26eabe596fe20081259e6b025e4a3","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"7a49836433b26eabe596fe20081259e6b025e4a3","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150818.tgz"},"directories":{}},"1.6.0-dev.20150819":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150819","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"06841ebc6bdcdde48fc3ff1ca30238694ba7ef10","_id":"typescript@1.6.0-dev.20150819","_shasum":"dcfd9b5beb0e1f4f56fb3b8891e2ba68d59804b1","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"dcfd9b5beb0e1f4f56fb3b8891e2ba68d59804b1","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150819.tgz"},"directories":{}},"1.6.0-dev.20150820":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150820","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"069d2dc724798d1249c334aa13b02a3c2f1617ea","_id":"typescript@1.6.0-dev.20150820","_shasum":"53b55e73bcd2344e57f5bcb1238c6bcdf721566b","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"53b55e73bcd2344e57f5bcb1238c6bcdf721566b","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150820.tgz"},"directories":{}},"1.6.0-dev.20150821":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150821","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"425ad026aed673a0a6348c6fa2480e0c849fc1aa","_id":"typescript@1.6.0-dev.20150821","_shasum":"b8e18105970dfce6d41a951206889950b6b44b64","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"b8e18105970dfce6d41a951206889950b6b44b64","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150821.tgz"},"directories":{}},"1.6.0-dev.20150822":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150822","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"15fb496be8cb281d2e786c6b93b695073d0e5196","_id":"typescript@1.6.0-dev.20150822","_shasum":"3e91c14dc04f66baf1b3607c140b2f107d84808c","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"3e91c14dc04f66baf1b3607c140b2f107d84808c","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150822.tgz"},"directories":{}},"1.6.0-dev.20150823":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150823","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"15fb496be8cb281d2e786c6b93b695073d0e5196","_id":"typescript@1.6.0-dev.20150823","_shasum":"af8666bc21649a71b2145ae1bad0f4b88a17d590","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"af8666bc21649a71b2145ae1bad0f4b88a17d590","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150823.tgz"},"directories":{}},"1.6.0-dev.20150824":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150824","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"15fb496be8cb281d2e786c6b93b695073d0e5196","_id":"typescript@1.6.0-dev.20150824","_shasum":"8616c1b3017e16e9b385a1c43dada0086ad6cfef","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8616c1b3017e16e9b385a1c43dada0086ad6cfef","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150824.tgz"},"directories":{}},"1.6.0-dev.20150825":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150825","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"9a6db930b48b2e51216739aa0d9430e13121cc93","_id":"typescript@1.6.0-dev.20150825","_shasum":"9ce426d6e023ab7748663df504e90f7716f03394","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"9ce426d6e023ab7748663df504e90f7716f03394","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150825.tgz"},"directories":{}},"1.7.0-dev.20150826":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150826","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ca593ec1abb7ac93d324224c90381b67c67aab9d","_id":"typescript@1.7.0-dev.20150826","_shasum":"52b7d41c97d47ae7a071801c2bd29496c0d33c46","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"52b7d41c97d47ae7a071801c2bd29496c0d33c46","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150826.tgz"},"directories":{}},"1.7.0-dev.20150827":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150827","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c9c6d82376a0dceeee4c55a25147956a1d074dae","_id":"typescript@1.7.0-dev.20150827","_shasum":"639d118ce4300dadb3e097d0abe8b8128e741b2e","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"639d118ce4300dadb3e097d0abe8b8128e741b2e","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150827.tgz"},"directories":{}},"1.7.0-dev.20150828":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150828","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"dec6bd9677fd95c64c0db8699ef05a3bba123ea1","_id":"typescript@1.7.0-dev.20150828","_shasum":"223b8ed67dc079e5caa9b56a9d3eba6c3886c328","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"223b8ed67dc079e5caa9b56a9d3eba6c3886c328","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150828.tgz"},"directories":{}},"1.7.0-dev.20150829":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150829","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"7f6608b2b929c6057e3be505c94ebb56969e43d1","_id":"typescript@1.7.0-dev.20150829","_shasum":"4c864ebafd31a49277ff78fabc1797575c0a66e9","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4c864ebafd31a49277ff78fabc1797575c0a66e9","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150829.tgz"},"directories":{}},"1.7.0-dev.20150830":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150830","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"7f6608b2b929c6057e3be505c94ebb56969e43d1","_id":"typescript@1.7.0-dev.20150830","_shasum":"08ffc0765278758537a9865d84cdbfe43f09acdf","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"08ffc0765278758537a9865d84cdbfe43f09acdf","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150830.tgz"},"directories":{}},"1.7.0-dev.20150831":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150831","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d0281f0e0e289de4467bef639a491f7f14df2186","_id":"typescript@1.7.0-dev.20150831","_shasum":"33f2945811ebe9f5fa9d7c00effa43bf2b498ef8","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"33f2945811ebe9f5fa9d7c00effa43bf2b498ef8","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150831.tgz"},"directories":{}},"1.7.0-dev.20150901":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150901","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"90b345c01e34b1d7dc09c0a5814710df8a1f8a4f","_id":"typescript@1.7.0-dev.20150901","_shasum":"9568599abac843eb0b9307d897c60c03e9f4ebbb","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"9568599abac843eb0b9307d897c60c03e9f4ebbb","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150901.tgz"},"directories":{}},"1.7.0-dev.20150902":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150902","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"06e25377ffdb0f89550f1a418d3e769fdfc3de7e","_id":"typescript@1.7.0-dev.20150902","_shasum":"94a864c92c094972d04ddda5b45be0b3a7a0d705","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"94a864c92c094972d04ddda5b45be0b3a7a0d705","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150902.tgz"},"directories":{}},"1.6.0-beta":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-beta","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"5542e396d71b0a8100164cf24790fffcc5d5bbe2","_id":"typescript@1.6.0-beta","_shasum":"3e3027d92282dbc8dd22472cc01e592ecb5196c9","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"3e3027d92282dbc8dd22472cc01e592ecb5196c9","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-beta.tgz"},"directories":{}},"1.7.0-dev.20150903":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150903","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"690b87c2097b0101969c941f085b1f660ecc1a7e","_id":"typescript@1.7.0-dev.20150903","_shasum":"c0209454d786bfad0080c836e4bb6e49d6bfc7b3","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"c0209454d786bfad0080c836e4bb6e49d6bfc7b3","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150903.tgz"},"directories":{}},"1.7.0-dev.20150904":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150904","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"dc867368200feaf56bbb9bb3317bfe357cce3fd5","_id":"typescript@1.7.0-dev.20150904","_shasum":"be76af39353fd3d22cbb7a8dbe9d7585b2acd315","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"be76af39353fd3d22cbb7a8dbe9d7585b2acd315","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150904.tgz"},"directories":{}},"1.6.0-dev.20150905":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150905","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"4a85546f946f0cee28f77feaaa96d1c0797de09e","_id":"typescript@1.6.0-dev.20150905","_shasum":"728b246b9e1034e1c411b34a1ddf568794aaa4a8","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"728b246b9e1034e1c411b34a1ddf568794aaa4a8","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150905.tgz"},"directories":{}},"1.6.0-dev.20150906":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150906","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"971c7770314467964c536242becad2555ef9c758","_id":"typescript@1.6.0-dev.20150906","_shasum":"ecc103d38053d5065d28bd5f88933ebfbade6f21","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ecc103d38053d5065d28bd5f88933ebfbade6f21","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150906.tgz"},"directories":{}},"1.6.0-dev.20150907":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150907","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"971c7770314467964c536242becad2555ef9c758","_id":"typescript@1.6.0-dev.20150907","_shasum":"43a94fc14ac67d6aa5e89578c01f141429c24986","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"43a94fc14ac67d6aa5e89578c01f141429c24986","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150907.tgz"},"directories":{}},"1.6.0-dev.20150908":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150908","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"971c7770314467964c536242becad2555ef9c758","_id":"typescript@1.6.0-dev.20150908","_shasum":"4c708d1dc33c66131fbfafb9d34cc955594f38b3","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4c708d1dc33c66131fbfafb9d34cc955594f38b3","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150908.tgz"},"directories":{}},"1.6.0-dev.20150909":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150909","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"971c7770314467964c536242becad2555ef9c758","_id":"typescript@1.6.0-dev.20150909","_shasum":"84f0cc47c4bc91c3f3309f0e2a90bc55fd06d3e7","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"84f0cc47c4bc91c3f3309f0e2a90bc55fd06d3e7","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150909.tgz"},"directories":{}},"1.6.0-dev.20150910":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150910","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a5c72014b0c345f6978bfe2fa38e5711c256e5af","_id":"typescript@1.6.0-dev.20150910","_shasum":"fefe9ea9c629a7f2e74647aa1878fb21378539de","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"fefe9ea9c629a7f2e74647aa1878fb21378539de","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150910.tgz"},"directories":{}},"1.6.0-dev.20150911":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150911","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"b71969e45a7917db29a916a5aa9fca56a77ab048","_id":"typescript@1.6.0-dev.20150911","_shasum":"71e1b4b36c1d4aff757449ea6426a3ee2a4acec7","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"71e1b4b36c1d4aff757449ea6426a3ee2a4acec7","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150911.tgz"},"directories":{}},"1.6.0-dev.20150912":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150912","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"90273f995db63e5671964c636bd16ad2ea863906","_id":"typescript@1.6.0-dev.20150912","_shasum":"e9bf2409caa444ef6db0c1edd16ec34cc753717d","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e9bf2409caa444ef6db0c1edd16ec34cc753717d","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150912.tgz"},"directories":{}},"1.6.0-dev.20150913":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150913","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"90273f995db63e5671964c636bd16ad2ea863906","_id":"typescript@1.6.0-dev.20150913","_shasum":"93022604b3b9e154b6ad4b203234f3ba8204eb86","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"93022604b3b9e154b6ad4b203234f3ba8204eb86","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150913.tgz"},"directories":{}},"1.6.0-dev.20150914":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150914","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"90273f995db63e5671964c636bd16ad2ea863906","_id":"typescript@1.6.0-dev.20150914","_shasum":"867b18d42991a3b51a4d9cf619bd4e07d8aafd39","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"867b18d42991a3b51a4d9cf619bd4e07d8aafd39","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150914.tgz"},"directories":{}},"1.6.0-dev.20150915":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150915","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"89718cf5a54fd67365d8f29e5f3e4a88f467bfe3","_id":"typescript@1.6.0-dev.20150915","_shasum":"4081386fa5adeef5aa5add29714e9ad9e1fcfca9","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4081386fa5adeef5aa5add29714e9ad9e1fcfca9","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150915.tgz"},"directories":{}},"1.7.0-dev.20150916":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150916","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c9170b81a8f69994c1c03af50a10aafd9c75c524","_id":"typescript@1.7.0-dev.20150916","_shasum":"ab3258bc8779bfe373dee27dfca55e5f32d50eec","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ab3258bc8779bfe373dee27dfca55e5f32d50eec","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150916.tgz"},"directories":{}},"1.6.2":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.2","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a44d8e76c68e7c685cef3d34943158021acd04e5","_id":"typescript@1.6.2","_shasum":"5b27254abeb111027cbf9450d3431bc5843191dd","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5b27254abeb111027cbf9450d3431bc5843191dd","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.2.tgz"},"directories":{}},"1.7.0-dev.20150917":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150917","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c9170b81a8f69994c1c03af50a10aafd9c75c524","_id":"typescript@1.7.0-dev.20150917","_shasum":"7654d52fd67c1b9c8615b52285f7cfb4b4c301e9","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"7654d52fd67c1b9c8615b52285f7cfb4b4c301e9","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150917.tgz"},"directories":{}},"1.7.0-dev.20150918":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150918","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"cd390fd83b5f67f4a91c335c83147405515ad67e","_id":"typescript@1.7.0-dev.20150918","_shasum":"4788f8d6e4c438a23b354ee1da28c35cb99c705e","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4788f8d6e4c438a23b354ee1da28c35cb99c705e","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150918.tgz"},"directories":{}},"1.7.0-dev.20150919":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150919","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c28efb7572f7ddea824b5f476c49f4f48de71f4b","_id":"typescript@1.7.0-dev.20150919","_shasum":"4067f01f00c68b2061bfc673afd81f0b716eb3e7","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4067f01f00c68b2061bfc673afd81f0b716eb3e7","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150919.tgz"},"directories":{}},"1.7.0-dev.20150920":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150920","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"92f5f59a075a08de32a43b3dc09f7f54751b471e","_id":"typescript@1.7.0-dev.20150920","_shasum":"bffa407560373081cc74fc88a5059e13432e06d5","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"bffa407560373081cc74fc88a5059e13432e06d5","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150920.tgz"},"directories":{}},"1.7.0-dev.20150921":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150921","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"92f5f59a075a08de32a43b3dc09f7f54751b471e","_id":"typescript@1.7.0-dev.20150921","_shasum":"4fca86ae26638318370b14dce12280d85cf159c0","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4fca86ae26638318370b14dce12280d85cf159c0","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150921.tgz"},"directories":{}},"1.7.0-dev.20150922":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150922","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"7b48a182c05ea4dea81bab73ecbbe9e013a79e99","_id":"typescript@1.7.0-dev.20150922","_shasum":"a59b823db4052496e03a65f7bd93d40c612cf056","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a59b823db4052496e03a65f7bd93d40c612cf056","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150922.tgz"},"directories":{}},"1.7.0-dev.20150923":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150923","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"5a77d67b630b5337aac2d90eeabaf4a8cbd018e8","_id":"typescript@1.7.0-dev.20150923","_shasum":"c3489dd958e69b927b818aabe279ca88cf780da0","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"c3489dd958e69b927b818aabe279ca88cf780da0","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150923.tgz"},"directories":{}},"1.7.0-dev.20150924":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150924","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"5a77d67b630b5337aac2d90eeabaf4a8cbd018e8","_id":"typescript@1.7.0-dev.20150924","_shasum":"db25eee548514b94c0f030c6f957ee62a0e43b8a","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"db25eee548514b94c0f030c6f957ee62a0e43b8a","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150924.tgz"},"directories":{}},"1.7.0-dev.20150925":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150925","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","postinstall":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"b8667816094525bc6d0a310dfec4be6cf41fb4d6","_id":"typescript@1.7.0-dev.20150925","_shasum":"39ac9b726e6c68ae837cbf2bc37d3d12a6914a63","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"39ac9b726e6c68ae837cbf2bc37d3d12a6914a63","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150925.tgz"},"directories":{}},"1.7.0-dev.20150926":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150926","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d9559d58ca4f68bf51849d067fe2e9560b2e081f","_id":"typescript@1.7.0-dev.20150926","_shasum":"041bc4ce69914df379df141a4a3017bcbb505ced","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"041bc4ce69914df379df141a4a3017bcbb505ced","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150926.tgz"},"directories":{}},"1.7.0-dev.20150927":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150927","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d9559d58ca4f68bf51849d067fe2e9560b2e081f","_id":"typescript@1.7.0-dev.20150927","_shasum":"b51d9cb08748f226f642aa283fcfa91bc8155f4e","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"b51d9cb08748f226f642aa283fcfa91bc8155f4e","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150927.tgz"},"directories":{}},"1.7.0-dev.20150928":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150928","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d9559d58ca4f68bf51849d067fe2e9560b2e081f","_id":"typescript@1.7.0-dev.20150928","_shasum":"d6a843bbac2858726c20b9eaa752e58a9914872a","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d6a843bbac2858726c20b9eaa752e58a9914872a","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150928.tgz"},"directories":{}},"1.7.0-dev.20150929":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150929","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c55d6dc0e3d920cd31b8d983c863bf0eb1020709","_id":"typescript@1.7.0-dev.20150929","_shasum":"a34b25a22a21c5dd7f2d69a5b72d0362bbf8a02a","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a34b25a22a21c5dd7f2d69a5b72d0362bbf8a02a","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150929.tgz"},"directories":{}},"1.7.0-dev.20150930":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150930","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e0bf8cc3849fd6207ed8f8d628d75ce8f40d757f","_id":"typescript@1.7.0-dev.20150930","_shasum":"12676a6beea3fcf3f2072f2cfb7c0f1ab34bafbe","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"12676a6beea3fcf3f2072f2cfb7c0f1ab34bafbe","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150930.tgz"},"directories":{}},"1.7.0-dev.20151001":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20151001","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests && npm run lint","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"dfb95b869278a4b3e9cd81abf05b0b52553bcaa2","_id":"typescript@1.7.0-dev.20151001","_shasum":"5e2730627526a189876fc5aa92ecc3ff3eb2afef","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5e2730627526a189876fc5aa92ecc3ff3eb2afef","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20151001.tgz"},"directories":{}},"1.7.0-dev.20151002":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20151002","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests && npm run lint","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"cc95dcac1bec89ece5986b8a5c1e8e19bb160db2","_id":"typescript@1.7.0-dev.20151002","_shasum":"8e469d25a2180efcfa899bed91a9dcf5254f87b2","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8e469d25a2180efcfa899bed91a9dcf5254f87b2","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20151002.tgz"},"directories":{}},"1.7.0-dev.20151003":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20151003","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests && npm run lint","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"331d26f40271c7a21c6fa74ffac633b45f653dda","_id":"typescript@1.7.0-dev.20151003","_shasum":"6e35ece47cc78821529b78509f10439316450d75","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"6e35ece47cc78821529b78509f10439316450d75","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20151003.tgz"},"directories":{}},"1.7.0-dev.20151004":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20151004","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests && npm run lint","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"331d26f40271c7a21c6fa74ffac633b45f653dda","_id":"typescript@1.7.0-dev.20151004","_shasum":"0ed090c573f7c89db61f9517cbbcb7e199635db5","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0ed090c573f7c89db61f9517cbbcb7e199635db5","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20151004.tgz"},"directories":{}},"1.7.0-dev.20151005":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20151005","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests && npm run lint","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"331d26f40271c7a21c6fa74ffac633b45f653dda","_id":"typescript@1.7.0-dev.20151005","_shasum":"1491232d48f41996b9eb2a8a1ef3dcf271bd3033","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"1491232d48f41996b9eb2a8a1ef3dcf271bd3033","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20151005.tgz"},"directories":{}},"1.7.0-dev.20151006":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20151006","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"53cff210fd9c08f32764251bf773b8de9c454092","_id":"typescript@1.7.0-dev.20151006","_shasum":"863afb588b5130b7232375931c3824daf9b10842","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"863afb588b5130b7232375931c3824daf9b10842","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20151006.tgz"},"directories":{}},"1.7.0-dev.20151014":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20151014","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"21e30e0f59fe3e45aa1df2369687fbd534d78079","_id":"typescript@1.7.0-dev.20151014","_shasum":"88f47ffc08da523859e95b8ad1c999dc4f192997","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"88f47ffc08da523859e95b8ad1c999dc4f192997","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20151014.tgz"},"directories":{}},"1.7.0-dev.20151015":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20151015","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d703e092279a3f35d3b541db7de96ee0c217a702","_id":"typescript@1.7.0-dev.20151015","_shasum":"e193643a2b785b4458edc44d22c459c44d8b92ed","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e193643a2b785b4458edc44d22c459c44d8b92ed","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20151015.tgz"},"directories":{}},"1.7.0-dev.20151016":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20151016","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"302db0a9d58fe6b108c4ec455883fa7a3c4fd991","_id":"typescript@1.7.0-dev.20151016","_shasum":"638826bcb4fa50c215abf2208e2f655c03c296dc","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"638826bcb4fa50c215abf2208e2f655c03c296dc","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20151016.tgz"},"directories":{}},"1.8.0-dev.20151017":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151017","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6aeec13d7efd1e7615e158d7669de14f06f2b803","_id":"typescript@1.8.0-dev.20151017","_shasum":"3d064e65959ae074371ca20678bbd0e82daec6fa","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"3d064e65959ae074371ca20678bbd0e82daec6fa","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151017.tgz"},"directories":{}},"1.8.0-dev.20151018":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151018","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6aeec13d7efd1e7615e158d7669de14f06f2b803","_id":"typescript@1.8.0-dev.20151018","_shasum":"a6ddf655721b3a23f1b405c2e7051f019ed0bad6","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a6ddf655721b3a23f1b405c2e7051f019ed0bad6","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151018.tgz"},"directories":{}},"1.8.0-dev.20151019":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151019","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"28c2887d504f94b2a67191b1956632653c2acb5d","_id":"typescript@1.8.0-dev.20151019","_shasum":"1b5a51a8a34e493a40af7c720378d2ef74da2029","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"1b5a51a8a34e493a40af7c720378d2ef74da2029","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151019.tgz"},"directories":{}},"1.8.0-dev.20151020":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151020","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"1b3640760b96bcea0e595f68b4cbccf40068c3e1","_id":"typescript@1.8.0-dev.20151020","_shasum":"dd798f1ac00e8c3e4e9069df83124af871a9a5a7","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"dd798f1ac00e8c3e4e9069df83124af871a9a5a7","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151020.tgz"},"directories":{}},"1.8.0-dev.20151021":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151021","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"853e9a24621d6ee1520c2a51db8c0863b9556da1","_id":"typescript@1.8.0-dev.20151021","_shasum":"895d42b30e6d03d19ade64f393956e59b245b8f0","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"895d42b30e6d03d19ade64f393956e59b245b8f0","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151021.tgz"},"directories":{}},"1.8.0-dev.20151022":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151022","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"9afc2b3c8fc254a6d88af1e47e0c881cb498b329","_id":"typescript@1.8.0-dev.20151022","_shasum":"7739b192e97741d16ca53ea583e03fae5c06cace","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"7739b192e97741d16ca53ea583e03fae5c06cace","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151022.tgz"},"directories":{}},"1.8.0-dev.20151023":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151023","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"bede6edc5106e3a4fbbfa9472f3473e61d21c884","_id":"typescript@1.8.0-dev.20151023","_shasum":"6e6a3c23e11966673904c63a2136766aad91b4f3","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"6e6a3c23e11966673904c63a2136766aad91b4f3","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151023.tgz"},"directories":{}},"1.8.0-dev.20151024":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151024","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c4e54685c63509f85aa83b7ece05e3650b5ed8d3","_id":"typescript@1.8.0-dev.20151024","_shasum":"0d87f86c3917c1607ff2df87034345bcfe6be5bc","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0d87f86c3917c1607ff2df87034345bcfe6be5bc","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151024.tgz"},"directories":{}},"1.8.0-dev.20151025":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151025","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c3c66a40f1f6c5fd15337c62a410840d15934296","_id":"typescript@1.8.0-dev.20151025","_shasum":"04c961ad9e3739c3c2aaed9a7105cbd5b6ac6620","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"04c961ad9e3739c3c2aaed9a7105cbd5b6ac6620","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151025.tgz"},"directories":{}},"1.8.0-dev.20151026":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151026","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c3c66a40f1f6c5fd15337c62a410840d15934296","_id":"typescript@1.8.0-dev.20151026","_shasum":"e6f19393c6583ed0a0f5bb880cfeb97babb81b58","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e6f19393c6583ed0a0f5bb880cfeb97babb81b58","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151026.tgz"},"directories":{}},"1.8.0-dev.20151027":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151027","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a9058f9aa94da3be26663b9d98dc2f4498764331","_id":"typescript@1.8.0-dev.20151027","_shasum":"35aa18b1bdc171fce01c691a552c86cd3c2f0dde","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"35aa18b1bdc171fce01c691a552c86cd3c2f0dde","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151027.tgz"},"directories":{}},"1.8.0-dev.20151028":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151028","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"9201ba2857d97d683d9823aef83bf912f45e6284","_id":"typescript@1.8.0-dev.20151028","_shasum":"1f79cf084cdf80803cd8abaf16dba1ca19e5f05d","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"1f79cf084cdf80803cd8abaf16dba1ca19e5f05d","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151028.tgz"},"directories":{}},"1.8.0-dev.20151029":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151029","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"067e1ccef23ee12b7404c020079e45a993091597","_id":"typescript@1.8.0-dev.20151029","_shasum":"562e0052173b8af0c7fd7c485a7d74e2af1ec490","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"562e0052173b8af0c7fd7c485a7d74e2af1ec490","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151029.tgz"},"directories":{}},"1.8.0-dev.20151030":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151030","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"067e1ccef23ee12b7404c020079e45a993091597","_id":"typescript@1.8.0-dev.20151030","_shasum":"7e1bd7294bd522da6a18dbdd6bef4bccf7a7547b","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"7e1bd7294bd522da6a18dbdd6bef4bccf7a7547b","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151030.tgz"},"directories":{}},"1.8.0-dev.20151031":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151031","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"5cbcafadb9a4b7db2731dddfd103572377482a5c","_id":"typescript@1.8.0-dev.20151031","_shasum":"1c301478db52e39240bfff7086cb6429a45f5d9b","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"1c301478db52e39240bfff7086cb6429a45f5d9b","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151031.tgz"},"directories":{}},"1.8.0-dev.20151101":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151101","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"5cbcafadb9a4b7db2731dddfd103572377482a5c","_id":"typescript@1.8.0-dev.20151101","_shasum":"effb545d6e5a1edd2f289f9e8da69d6fa118100e","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"effb545d6e5a1edd2f289f9e8da69d6fa118100e","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151101.tgz"},"directories":{}},"1.8.0-dev.20151102":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151102","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"5cbcafadb9a4b7db2731dddfd103572377482a5c","_id":"typescript@1.8.0-dev.20151102","_shasum":"73aed16ea28bd3cbd21abba6349edbcb92f4f9d5","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"73aed16ea28bd3cbd21abba6349edbcb92f4f9d5","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151102.tgz"},"directories":{}},"1.8.0-dev.20151103":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151103","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ae2faf83ba746966728714e2f49e7d981822518d","_id":"typescript@1.8.0-dev.20151103","_shasum":"667f61aac78f0e1689d006b1fb7141f990c4bfce","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"667f61aac78f0e1689d006b1fb7141f990c4bfce","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151103.tgz"},"directories":{}},"1.8.0-dev.20151104":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151104","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2c644476fbeded909426b7c87025ad05c1e13a4d","_id":"typescript@1.8.0-dev.20151104","_shasum":"e45384feb78e01f9607425fdcf6e3b2af71a43a1","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e45384feb78e01f9607425fdcf6e3b2af71a43a1","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151104.tgz"},"directories":{}},"1.8.0-dev.20151105":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151105","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"12c6a7400dffc10c41f9245da64fbd5beeceb3dc","_id":"typescript@1.8.0-dev.20151105","_shasum":"11522aa6b65194737cbf4f6a71a79244787b351f","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"11522aa6b65194737cbf4f6a71a79244787b351f","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151105.tgz"},"directories":{}},"1.8.0-dev.20151106":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151106","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"9b4956fa1151e3fa07babcdfc421385a2f155487","_id":"typescript@1.8.0-dev.20151106","_shasum":"89052cb1ea9f1403633a719b22fbca0fedc419ff","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"89052cb1ea9f1403633a719b22fbca0fedc419ff","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151106.tgz"},"directories":{}},"1.8.0-dev.20151107":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151107","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d1c7a62a60b394165226aa37805b18c087788d1b","_id":"typescript@1.8.0-dev.20151107","_shasum":"9ada1104380da21852ebfac4721f56f8abdbc809","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"9ada1104380da21852ebfac4721f56f8abdbc809","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151107.tgz"},"directories":{}},"1.8.0-dev.20151108":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151108","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c3df2890fc9227707eb557faa752a7e7073dcb44","_id":"typescript@1.8.0-dev.20151108","_shasum":"da5a7aaae9a5fa3cefdca514fc00c5e18e5cad25","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"da5a7aaae9a5fa3cefdca514fc00c5e18e5cad25","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151108.tgz"},"directories":{}},"1.8.0-dev.20151109":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151109","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c3df2890fc9227707eb557faa752a7e7073dcb44","_id":"typescript@1.8.0-dev.20151109","_shasum":"a12e455d7ba5d5181a78da421266337612c7f481","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a12e455d7ba5d5181a78da421266337612c7f481","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151109.tgz"},"directories":{}},"1.8.0-dev.20151110":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151110","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"9c284805ec46ed4807f205d6d5b1434745039381","_id":"typescript@1.8.0-dev.20151110","_shasum":"f35fe46027bb6fb1dfb73013aaf21dea7fcbd081","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f35fe46027bb6fb1dfb73013aaf21dea7fcbd081","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151110.tgz"},"directories":{}},"1.8.0-dev.20151111":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151111","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"75364b69889bd293f078aeb4913853a2e6e31e54","_id":"typescript@1.8.0-dev.20151111","_shasum":"1d9dee6194249e28e67cee8b5028ccfdeb659461","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"1d9dee6194249e28e67cee8b5028ccfdeb659461","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151111.tgz"},"directories":{}},"1.8.0-dev.20151112":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151112","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ef02bf0915cae10c6debd9bf192786f98bbe9a04","_id":"typescript@1.8.0-dev.20151112","_shasum":"60c8834c48a69e66ff3d6e4c877091fad08ee8c3","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"60c8834c48a69e66ff3d6e4c877091fad08ee8c3","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151112.tgz"},"directories":{}},"1.8.0-dev.20151113":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151113","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"3d6312a1da2f38677f89ba23ca6a1d72efa54ba2","_id":"typescript@1.8.0-dev.20151113","_shasum":"95ebec2826077d3ffcdfb90c6af04d306fb0ad3e","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"95ebec2826077d3ffcdfb90c6af04d306fb0ad3e","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151113.tgz"},"directories":{}},"1.8.0-dev.20151114":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151114","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6b27ce4907b44d63ef7a218962514097347152e4","_id":"typescript@1.8.0-dev.20151114","_shasum":"61a91fa6d00c1c091ca08dd5a1b83e95629d36ce","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"61a91fa6d00c1c091ca08dd5a1b83e95629d36ce","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151114.tgz"},"directories":{}},"1.8.0-dev.20151115":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151115","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"abb7a130e30255c01b2a4bc7437d3a4dc4ba1605","_id":"typescript@1.8.0-dev.20151115","_shasum":"4eb2ffea495d3f8a650a42101a21bc32aaac386c","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4eb2ffea495d3f8a650a42101a21bc32aaac386c","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151115.tgz"},"directories":{}},"1.8.0-dev.20151116":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151116","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"abb7a130e30255c01b2a4bc7437d3a4dc4ba1605","_id":"typescript@1.8.0-dev.20151116","_shasum":"33e187196b11f2c3f04b7ba3d98cd83fed959606","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"33e187196b11f2c3f04b7ba3d98cd83fed959606","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151116.tgz"},"directories":{}},"1.8.0-dev.20151117":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151117","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"13bc120fe2f9afecc636b2d8a77946999d71a970","_id":"typescript@1.8.0-dev.20151117","_shasum":"3a945b1d0ffd1be4b912ce615a41f1ab3e1d5cfd","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"3a945b1d0ffd1be4b912ce615a41f1ab3e1d5cfd","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151117.tgz"},"directories":{}},"1.8.0-dev.20151118":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151118","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"5e84ed399ccd7ca1e3bdb71c64798ed0fe68cf22","_id":"typescript@1.8.0-dev.20151118","_shasum":"b63b8aae5ba97c1ffe25c36af9f5141ea827fd4d","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"b63b8aae5ba97c1ffe25c36af9f5141ea827fd4d","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151118.tgz"},"directories":{}},"1.8.0-dev.20151119":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151119","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"bd84b844ff8982ee0c2e8a7f9d777925760fea8a","_id":"typescript@1.8.0-dev.20151119","_shasum":"5289e9bd64efd721043206174fb21dbb96bb5d4d","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5289e9bd64efd721043206174fb21dbb96bb5d4d","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151119.tgz"},"directories":{}},"1.8.0-dev.20151120":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151120","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"883b8d9347ceebfce97d2a6312344cd91bb06aef","_id":"typescript@1.8.0-dev.20151120","_shasum":"b5a01a2e4e383f7e368413b68d5ba8f14703c092","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"b5a01a2e4e383f7e368413b68d5ba8f14703c092","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151120.tgz"},"directories":{}},"1.8.0-dev.20151121":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151121","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c94dcbd770f0ed8631678c69d00e3c2d4f30613a","_id":"typescript@1.8.0-dev.20151121","_shasum":"58d395ea1c851878f8e74c7a5765e7de0b6ce5a4","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"58d395ea1c851878f8e74c7a5765e7de0b6ce5a4","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151121.tgz"},"directories":{}},"1.8.0-dev.20151122":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151122","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c94dcbd770f0ed8631678c69d00e3c2d4f30613a","_id":"typescript@1.8.0-dev.20151122","_shasum":"2ded2e6f29097be402741256035ab54f9b473020","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"2ded2e6f29097be402741256035ab54f9b473020","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151122.tgz"},"directories":{}},"1.8.0-dev.20151123":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151123","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"fbaba90ac96fd296da1f5912aab95785806754dc","_id":"typescript@1.8.0-dev.20151123","_shasum":"5f8be34ae1a8d11a0cee55b45ca27484166f24a3","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5f8be34ae1a8d11a0cee55b45ca27484166f24a3","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151123.tgz"},"directories":{}},"1.8.0-dev.20151124":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151124","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"fb76dc95deecfee9e16d8e78b7abb4521901f840","_id":"typescript@1.8.0-dev.20151124","_shasum":"25c2c3c1551ad9d5283109132434948b25bcf581","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"25c2c3c1551ad9d5283109132434948b25bcf581","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151124.tgz"},"directories":{}},"1.8.0-dev.20151125":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151125","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"8909c3a2dd42f99ad6130be36c11f1efe57efbd3","_id":"typescript@1.8.0-dev.20151125","_shasum":"20ec8882857c96420eca11e66ba8c387eb1f6b16","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"20ec8882857c96420eca11e66ba8c387eb1f6b16","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151125.tgz"},"directories":{}},"1.8.0-dev.20151126":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151126","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"38215c68026f1abdd73ba6201c951b626d86d966","_id":"typescript@1.8.0-dev.20151126","_shasum":"fc01aa18ff63bc90fcf416fa482e8fc4eda6e24f","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"fc01aa18ff63bc90fcf416fa482e8fc4eda6e24f","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151126.tgz"},"directories":{}},"1.8.0-dev.20151127":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151127","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"38215c68026f1abdd73ba6201c951b626d86d966","_id":"typescript@1.8.0-dev.20151127","_shasum":"03ad7bf27d4f5d36457dede9fbdcc40c5eeade36","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"03ad7bf27d4f5d36457dede9fbdcc40c5eeade36","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151127.tgz"},"directories":{}},"1.8.0-dev.20151128":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151128","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"38215c68026f1abdd73ba6201c951b626d86d966","_id":"typescript@1.8.0-dev.20151128","_shasum":"316603f8933f8ad7deef0c382c907ecb21574bb5","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"316603f8933f8ad7deef0c382c907ecb21574bb5","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151128.tgz"},"directories":{}},"1.8.0-dev.20151129":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151129","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2f282a786a2690cbe6be6bc40898612b6155e48c","_id":"typescript@1.8.0-dev.20151129","_shasum":"4c18e707827e47ca3c294e4998400aee55247bda","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4c18e707827e47ca3c294e4998400aee55247bda","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151129.tgz"},"directories":{}},"1.8.0-dev.20151130":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151130","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2f282a786a2690cbe6be6bc40898612b6155e48c","_id":"typescript@1.8.0-dev.20151130","_shasum":"155387bf9fcdaf0e9dcde95e2168598a4aa002e1","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"155387bf9fcdaf0e9dcde95e2168598a4aa002e1","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151130.tgz"},"directories":{}},"1.7.3":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.3","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a1ff917aa2ad10507673bebd2a61b669ad839eaf","_id":"typescript@1.7.3","_shasum":"adf81fc4dc68d5374cc28d8bf2b660957468cff7","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"adf81fc4dc68d5374cc28d8bf2b660957468cff7","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.3.tgz"},"directories":{}},"1.8.0-dev.20151201":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151201","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"dac1874c38c29352142757d14b06221af7590293","_id":"typescript@1.8.0-dev.20151201","_shasum":"dea113b35fead7e8bb820a5b0ebbd20e899dd65e","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"dea113b35fead7e8bb820a5b0ebbd20e899dd65e","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151201.tgz"},"directories":{}},"1.8.0-dev.20151202":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151202","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"19d7e629da07003de971a70fdf91aa5a560931ea","_id":"typescript@1.8.0-dev.20151202","_shasum":"8905ff9db6a6ce03ddc0a7be44193e573c645b13","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8905ff9db6a6ce03ddc0a7be44193e573c645b13","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151202.tgz"},"directories":{}},"1.8.0-dev.20151203":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151203","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"4137a103d886c8e042386b76b8e38ba173160602","_id":"typescript@1.8.0-dev.20151203","_shasum":"74386b5adea59ae0d76029a9c1b0f09e80b62fd7","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"74386b5adea59ae0d76029a9c1b0f09e80b62fd7","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151203.tgz"},"directories":{}},"1.8.0-dev.20151204":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151204","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"3a4ac33240fb4d0641ecc8b385a3ad34af5f648c","_id":"typescript@1.8.0-dev.20151204","_shasum":"972b3781849183561a80d6e2d47fba9798d78f61","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"972b3781849183561a80d6e2d47fba9798d78f61","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151204.tgz"},"directories":{}},"1.8.0-dev.20151210":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151210","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ecfeb219657d94288d3fc28b82bb3947719f49f8","_id":"typescript@1.8.0-dev.20151210","_shasum":"14b96a95c5c6c5a860d773b7a1601fd2c5c0e04e","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"14b96a95c5c6c5a860d773b7a1601fd2c5c0e04e","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151210.tgz"},"directories":{}},"1.8.0-dev.20151211":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151211","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ff784770be6355c37cd4e119bf149c3ebb56f26b","_id":"typescript@1.8.0-dev.20151211","_shasum":"2049992470fd0bb7e85de3bd24b3d512a16afac7","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"2049992470fd0bb7e85de3bd24b3d512a16afac7","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151211.tgz"},"directories":{}},"1.8.0-dev.20151212":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151212","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"9d1cc311448a10f765b11afe3eff9d217994e114","_id":"typescript@1.8.0-dev.20151212","_shasum":"0953ab469e7071a4365870b0fdabd10b06a98d34","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0953ab469e7071a4365870b0fdabd10b06a98d34","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151212.tgz"},"directories":{}},"1.8.0-dev.20151213":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151213","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"87036fe9f769c03f0a6b84148d385a7a8015c957","_id":"typescript@1.8.0-dev.20151213","_shasum":"c4580626596c1798ee34df89dab87b56e22e7ad5","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"c4580626596c1798ee34df89dab87b56e22e7ad5","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151213.tgz"},"directories":{}},"1.8.0-dev.20151214":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151214","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"87036fe9f769c03f0a6b84148d385a7a8015c957","_id":"typescript@1.8.0-dev.20151214","_shasum":"1ab06f431c7a93c344e606505be738da08bd7d80","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"1ab06f431c7a93c344e606505be738da08bd7d80","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151214.tgz"},"directories":{}},"1.7.5":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.5","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"~2","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"1a8406d8b05e8efea768a1788cc9024f9425a1e5","_id":"typescript@1.7.5","_shasum":"a80fc231d9b95afeb9d10f0589560428dd0a045e","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a80fc231d9b95afeb9d10f0589560428dd0a045e","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.5.tgz"},"directories":{}},"1.8.0-dev.20151215":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151215","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2f447ee005ad8970cb1af64e43b3a52efe7b4ff3","_id":"typescript@1.8.0-dev.20151215","_shasum":"645efae13cfbb51ce1410a0e3d396b072f784377","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"645efae13cfbb51ce1410a0e3d396b072f784377","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151215.tgz"},"directories":{}},"1.8.0-dev.20151216":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151216","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"55d4f0f7e40a2b8ec708a316448d43df682d03cd","_id":"typescript@1.8.0-dev.20151216","_shasum":"d5e3a4c4d32ca0178806fa1e15631e9839285290","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d5e3a4c4d32ca0178806fa1e15631e9839285290","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151216.tgz"},"directories":{}},"1.8.0-dev.20151217":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151217","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"55d4f0f7e40a2b8ec708a316448d43df682d03cd","_id":"typescript@1.8.0-dev.20151217","_shasum":"32ce3bfc844567d7bde712705a680bea4be66d78","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"32ce3bfc844567d7bde712705a680bea4be66d78","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151217.tgz"},"directories":{}},"1.8.0-dev.20151218":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151218","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"bb1e5ab5ea104cede32d8bda00f8c689ddcc84a9","_id":"typescript@1.8.0-dev.20151218","_shasum":"a81dcf35462e360cdc60fbc7f008091c0cc7c0bc","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a81dcf35462e360cdc60fbc7f008091c0cc7c0bc","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151218.tgz"},"directories":{}},"1.8.0-dev.20151219":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151219","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"66a0f1d2ea9b100a1df857728af66a6e62f9f31b","_id":"typescript@1.8.0-dev.20151219","_shasum":"d56df3437a20e4fb7297d35adf5aefc27ab0a771","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d56df3437a20e4fb7297d35adf5aefc27ab0a771","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151219.tgz"},"directories":{}},"1.8.0-dev.20151220":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151220","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"93a459b405314b4d4216b987be644255e4212265","_id":"typescript@1.8.0-dev.20151220","_shasum":"25fedec2a47fce49b696f1e1daf5a1578331a0b5","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"25fedec2a47fce49b696f1e1daf5a1578331a0b5","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151220.tgz"},"directories":{}},"1.8.0-dev.20151221":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151221","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"93a459b405314b4d4216b987be644255e4212265","_id":"typescript@1.8.0-dev.20151221","_shasum":"ceb240f5be22312ad9992b9da387243d0ed73a0c","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ceb240f5be22312ad9992b9da387243d0ed73a0c","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151221.tgz"},"directories":{}},"1.8.0-dev.20151222":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151222","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"7785e8492670eeb65c19461f79db0b353ce63f76","_id":"typescript@1.8.0-dev.20151222","_shasum":"c739cef75efa8d01d82798c9dfe928f9b7c77197","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"c739cef75efa8d01d82798c9dfe928f9b7c77197","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151222.tgz"},"directories":{}},"1.8.0-dev.20151223":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151223","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"72bb1d3decb1b8a8daeab3523275b2d89065410b","_id":"typescript@1.8.0-dev.20151223","_shasum":"cd8a8a696691c169b7a6d5a2c62526239798afb6","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"cd8a8a696691c169b7a6d5a2c62526239798afb6","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151223.tgz"},"directories":{}},"1.8.0-dev.20151224":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151224","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"72bb1d3decb1b8a8daeab3523275b2d89065410b","_id":"typescript@1.8.0-dev.20151224","_shasum":"a3d740a7084001062cd3766b4fdcf512b05cf6ea","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a3d740a7084001062cd3766b4fdcf512b05cf6ea","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151224.tgz"},"directories":{}},"1.8.0-dev.20151225":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151225","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"72bb1d3decb1b8a8daeab3523275b2d89065410b","_id":"typescript@1.8.0-dev.20151225","_shasum":"8c7c7c8481c1973b79f9b1ef1fe9eb401ee729e3","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8c7c7c8481c1973b79f9b1ef1fe9eb401ee729e3","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151225.tgz"},"directories":{}},"1.8.0-dev.20151226":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151226","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"72bb1d3decb1b8a8daeab3523275b2d89065410b","_id":"typescript@1.8.0-dev.20151226","_shasum":"f1f06f8fc537129216a2161d2e092e772aaca618","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f1f06f8fc537129216a2161d2e092e772aaca618","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151226.tgz"},"directories":{}},"1.8.0-dev.20151227":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151227","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"72bb1d3decb1b8a8daeab3523275b2d89065410b","_id":"typescript@1.8.0-dev.20151227","_shasum":"4edde5442af8f1ab4e478c986c48925faa82db76","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4edde5442af8f1ab4e478c986c48925faa82db76","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151227.tgz"},"directories":{}},"1.8.0-dev.20151228":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151228","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"72bb1d3decb1b8a8daeab3523275b2d89065410b","_id":"typescript@1.8.0-dev.20151228","_shasum":"229f44f2489828efaac0b77462964eea48fbbbb5","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"229f44f2489828efaac0b77462964eea48fbbbb5","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151228.tgz"},"directories":{}},"1.8.0-dev.20151229":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151229","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"72bb1d3decb1b8a8daeab3523275b2d89065410b","_id":"typescript@1.8.0-dev.20151229","_shasum":"b2be8dd51237df9429f33cf51793b29da149fe48","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"b2be8dd51237df9429f33cf51793b29da149fe48","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151229.tgz"},"directories":{}},"1.8.0-dev.20151230":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151230","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"376534981220fbbfee39ae97299aafe0d9c473ce","_id":"typescript@1.8.0-dev.20151230","_shasum":"61b3600eed002574fce96fedb95d4c231550a976","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"61b3600eed002574fce96fedb95d4c231550a976","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151230.tgz"},"directories":{}},"1.8.0-dev.20151231":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151231","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"376534981220fbbfee39ae97299aafe0d9c473ce","_id":"typescript@1.8.0-dev.20151231","_shasum":"e31384479c8da17cc3a3d4f65942d761e65df610","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e31384479c8da17cc3a3d4f65942d761e65df610","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151231.tgz"},"directories":{}},"1.8.0-dev.20160101":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160101","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"376534981220fbbfee39ae97299aafe0d9c473ce","_id":"typescript@1.8.0-dev.20160101","_shasum":"95793742b19b5160510d30d5fb7e46a4db7354d3","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"95793742b19b5160510d30d5fb7e46a4db7354d3","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160101.tgz"},"directories":{}},"1.8.0-dev.20160102":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160102","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6be02062423a6b61d11cd58736c06afa2c8552b2","_id":"typescript@1.8.0-dev.20160102","_shasum":"522cc5e879ec8fec35af1c2fd9fa96788fc65239","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"522cc5e879ec8fec35af1c2fd9fa96788fc65239","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160102.tgz"},"directories":{}},"1.8.0-dev.20160103":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160103","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6be02062423a6b61d11cd58736c06afa2c8552b2","_id":"typescript@1.8.0-dev.20160103","_shasum":"0c2d67d3dd9faf0b0cab7baa1c63a0443ddf7529","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0c2d67d3dd9faf0b0cab7baa1c63a0443ddf7529","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160103.tgz"},"directories":{}},"1.8.0-dev.20160104":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160104","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6be02062423a6b61d11cd58736c06afa2c8552b2","_id":"typescript@1.8.0-dev.20160104","_shasum":"86f087fd295670d885ab60aa4b3e16466db35570","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"86f087fd295670d885ab60aa4b3e16466db35570","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160104.tgz"},"directories":{}},"1.8.0-dev.20160105":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160105","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"fec691ec222374646a64e9b746df5308d98da8c1","_id":"typescript@1.8.0-dev.20160105","_shasum":"a083b06c2c560b68174c821e643206586af2d389","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a083b06c2c560b68174c821e643206586af2d389","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160105.tgz"},"directories":{}},"1.8.0-dev.20160106":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160106","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ba0f7f52abc0ab93f573b9faf3c8c8ce29161181","_id":"typescript@1.8.0-dev.20160106","_shasum":"51e09f12a071f7d1ed653dc5fb8ade14c3cf5f35","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"51e09f12a071f7d1ed653dc5fb8ade14c3cf5f35","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160106.tgz"},"directories":{}},"1.8.0-dev.20160107":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160107","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a861913852880aa266828542a7fdac16d139172e","_id":"typescript@1.8.0-dev.20160107","_shasum":"5b09d2e54b41965302839d40f1aec18858809a64","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5b09d2e54b41965302839d40f1aec18858809a64","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160107.tgz"},"directories":{}},"1.8.0-dev.20160108":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160108","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a444be84c44b26b3e5ef54cb15ad06504a205a94","_id":"typescript@1.8.0-dev.20160108","_shasum":"656ec0577b949bfa2790769c749d5726568dc81e","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"656ec0577b949bfa2790769c749d5726568dc81e","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160108.tgz"},"directories":{}},"1.8.0-dev.20160109":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160109","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"531392811214383a4c38aacda5bbc37cc7a8d860","_id":"typescript@1.8.0-dev.20160109","_shasum":"4e77d8c4e98e5a39c92138adaaa6de55f0386604","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4e77d8c4e98e5a39c92138adaaa6de55f0386604","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160109.tgz"},"directories":{}},"1.8.0-dev.20160110":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160110","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"531392811214383a4c38aacda5bbc37cc7a8d860","_id":"typescript@1.8.0-dev.20160110","_shasum":"dd3b5590d56010dbb782044930ad4d04979305c8","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"dd3b5590d56010dbb782044930ad4d04979305c8","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160110.tgz"},"directories":{}},"1.8.0-dev.20160111":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160111","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"8cf347c0885a08dfbbf070d4610510c3f7f453ac","_id":"typescript@1.8.0-dev.20160111","_shasum":"6a67aa500dd140d7f633596f1e6c5565fd4b3de8","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"6a67aa500dd140d7f633596f1e6c5565fd4b3de8","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160111.tgz"},"directories":{}},"1.8.0-dev.20160112":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160112","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"33bfd92f4866e01d373ce0fdea7737e849b9c840","_id":"typescript@1.8.0-dev.20160112","_shasum":"86e9f1626a3fc9b4e6b21feedd12b36922c61854","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"86e9f1626a3fc9b4e6b21feedd12b36922c61854","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160112.tgz"},"directories":{}},"1.8.0-dev.20160113":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160113","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"5f024a3c9f08d8475ca951db4a18858b42f665bf","_id":"typescript@1.8.0-dev.20160113","_shasum":"dc560834fafb60aab221ebf893dc0ffd72bc7fcc","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"dc560834fafb60aab221ebf893dc0ffd72bc7fcc","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160113.tgz"},"directories":{}},"1.8.0-dev.20160114":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160114","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"9df1ed4dd32408fcaa92d031d1f3ff6468506b95","_id":"typescript@1.8.0-dev.20160114","_shasum":"1e14eddd0ffa60b720ee28a159871b906e0dfdaa","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"1e14eddd0ffa60b720ee28a159871b906e0dfdaa","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160114.tgz"},"directories":{}},"1.8.0-dev.20160115":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160115","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"1.8.0-dev.20160113","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"efc573f263156e1cd5d62b64375f9c99ef294f97","_id":"typescript@1.8.0-dev.20160115","_shasum":"f0f08b6791e07e367cd4413eee1956ec9d88aeff","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f0f08b6791e07e367cd4413eee1956ec9d88aeff","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160115.tgz"},"directories":{}},"1.8.0-dev.20160116":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160116","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"1.8.0-dev.20160113","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c6b0cf1a03e8e23ccb0baad3889a126aa4d970f4","_id":"typescript@1.8.0-dev.20160116","_shasum":"6b16fed8b3a33ef62e08fb16d7859292811e0800","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"6b16fed8b3a33ef62e08fb16d7859292811e0800","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160116.tgz"},"directories":{}},"1.8.0-dev.20160117":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160117","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"31bbac3c11c82af6cb93fd26ccf1632da6a04353","_id":"typescript@1.8.0-dev.20160117","_shasum":"01de25b99b7beacfb0fa9931fe179d34973c72e6","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"01de25b99b7beacfb0fa9931fe179d34973c72e6","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160117.tgz"},"directories":{}},"1.8.0-dev.20160118":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160118","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"31bbac3c11c82af6cb93fd26ccf1632da6a04353","_id":"typescript@1.8.0-dev.20160118","_shasum":"a9a39c3255eaa57782672e2b38edf4c4a64b0834","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a9a39c3255eaa57782672e2b38edf4c4a64b0834","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160118.tgz"},"directories":{}},"1.8.0-dev.20160119":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160119","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"31bbac3c11c82af6cb93fd26ccf1632da6a04353","_id":"typescript@1.8.0-dev.20160119","_shasum":"ff29599240182b35444166ded1a5b874c9b025f6","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ff29599240182b35444166ded1a5b874c9b025f6","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160119.tgz"},"directories":{}},"1.8.0-dev.20160120":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160120","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"56141c2f8439df1a17f45f8c59c1cccba8964951","_id":"typescript@1.8.0-dev.20160120","_shasum":"55b9ed4b46a690ed56c362b49ddbc2f80db7f787","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"55b9ed4b46a690ed56c362b49ddbc2f80db7f787","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160120.tgz"},"directories":{}},"1.8.0-dev.20160121":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160121","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ebfdeaab0c0f7bcb850c8e5cc4899f9c5a938107","_id":"typescript@1.8.0-dev.20160121","_shasum":"2752deae010d5952a9adcafe6c4a57e24dec9f05","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"2752deae010d5952a9adcafe6c4a57e24dec9f05","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160121.tgz"},"directories":{}},"1.8.0-dev.20160122":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160122","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"931d162620c7e09377c12875834e1838c4cdd51b","_id":"typescript@1.8.0-dev.20160122","_shasum":"69885016bf5f4a9a2ce97028cfa1b2d4f159c509","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"69885016bf5f4a9a2ce97028cfa1b2d4f159c509","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160122.tgz"},"directories":{}},"1.8.0-dev.20160123":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160123","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"87fdfc81942ce7499bde0c6832fd7d551bb81c98","_id":"typescript@1.8.0-dev.20160123","_shasum":"2e160737e41a1e04c3eb5bf8f6d911a5fa18f7d7","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"2e160737e41a1e04c3eb5bf8f6d911a5fa18f7d7","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160123.tgz"},"directories":{}},"1.8.0-dev.20160124":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160124","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"87fdfc81942ce7499bde0c6832fd7d551bb81c98","_id":"typescript@1.8.0-dev.20160124","_shasum":"78383316a62c5fdb12f765ecac60e21cd662bafb","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"78383316a62c5fdb12f765ecac60e21cd662bafb","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160124.tgz"},"directories":{}},"1.8.0-dev.20160125":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160125","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"f947f6abb430987a22270561938e6cb1b471c654","_id":"typescript@1.8.0-dev.20160125","_shasum":"62a8df4066e3a67f8b98ed28911d43fae6b01803","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"62a8df4066e3a67f8b98ed28911d43fae6b01803","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160125.tgz"},"directories":{}},"1.9.0-dev.20160126":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160126","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"f70e255fa0bc29d77c535ccf7eaaae9ad91dadca","_id":"typescript@1.9.0-dev.20160126","_shasum":"8cca11ee0dfada2e7a01b72037807db532f6dd56","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8cca11ee0dfada2e7a01b72037807db532f6dd56","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160126.tgz"},"directories":{}},"1.9.0-dev.20160127":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160127","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"265069e296a865e472b70f326840ca7b46f4ec39","_id":"typescript@1.9.0-dev.20160127","_shasum":"ddb403dee5578a7b24b052ea7904bb4f03be0ff2","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ddb403dee5578a7b24b052ea7904bb4f03be0ff2","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160127.tgz"},"directories":{}},"1.9.0-dev.20160128":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160128","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"2.3.4","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"0981719bedcfca41c8b85e4aa80d44cb2175836a","_id":"typescript@1.9.0-dev.20160128","_shasum":"481cd7ac32aafe8bab9c4ec4c9d9d5d9c57cce53","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"481cd7ac32aafe8bab9c4ec4c9d9d5d9c57cce53","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160128.tgz"},"directories":{}},"1.8.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"2.3.4","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a288b84632c1400806df55025ca6b568cfa4d00e","_id":"typescript@1.8.0","_shasum":"cc5bc63d7f7d84ea26debd7adb774c0362b0ec11","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"cc5bc63d7f7d84ea26debd7adb774c0362b0ec11","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0.tgz"},"directories":{}},"1.9.0-dev.20160129":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160129","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"2.3.4","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e954929d4b00b86b93e7f83ab461223cd4747277","_id":"typescript@1.9.0-dev.20160129","_shasum":"d6c9f0ba7c29726ed8627e3a6e8e5e32786d8529","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d6c9f0ba7c29726ed8627e3a6e8e5e32786d8529","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160129.tgz"},"directories":{}},"1.9.0-dev.20160130":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160130","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ebb1828763eb6cdf37a39b62654108b14621d9fd","_id":"typescript@1.9.0-dev.20160130","_shasum":"954603b0f66156395b096aaf159cd336a104ff89","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"954603b0f66156395b096aaf159cd336a104ff89","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160130.tgz"},"directories":{}},"1.9.0-dev.20160131":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160131","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"39216e8811c2a11d8536b8d7e72dc12383c36c8e","_id":"typescript@1.9.0-dev.20160131","_shasum":"5c789808a2b2ec65485104ea779690c87f11a21b","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5c789808a2b2ec65485104ea779690c87f11a21b","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160131.tgz"},"directories":{}},"1.9.0-dev.20160201":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160201","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"39216e8811c2a11d8536b8d7e72dc12383c36c8e","_id":"typescript@1.9.0-dev.20160201","_shasum":"7af05425031d9e93cdc4c3ef3b2145bf6321f1fe","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"7af05425031d9e93cdc4c3ef3b2145bf6321f1fe","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160201.tgz"},"directories":{}},"1.9.0-dev.20160202":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160202","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"085593375723006b81d6c0278df98206c389c82b","_id":"typescript@1.9.0-dev.20160202","_shasum":"02c2869eea489e8051f3b9b15483ae7c037a19e6","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"02c2869eea489e8051f3b9b15483ae7c037a19e6","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160202.tgz"},"_npmOperationalInternal":{"host":"packages-8-eu.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160202.tgz_1454396874854_0.9711095087695867"},"directories":{}},"1.9.0-dev.20160203":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160203","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"33ef35889397f5e100b556935f906b355402b4f5","_id":"typescript@1.9.0-dev.20160203","_shasum":"69756d9a617ca5d6205d5cb6af558b7991ad6781","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"69756d9a617ca5d6205d5cb6af558b7991ad6781","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160203.tgz"},"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160203.tgz_1454483276246_0.5838871169835329"},"directories":{}},"1.9.0-dev.20160204":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160204","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2fde7ab8fe6f45b8875691a1487527c7a598a87a","_id":"typescript@1.9.0-dev.20160204","_shasum":"8ca2777f1102cf7a45b14e6020f846eef2a17303","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8ca2777f1102cf7a45b14e6020f846eef2a17303","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160204.tgz"},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160204.tgz_1454569696822_0.8117012321017683"},"directories":{}},"1.9.0-dev.20160205":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160205","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a324176102b4657b4de6759b5d03f5eeda38f422","_id":"typescript@1.9.0-dev.20160205","_shasum":"4430520ea59f9ee8797819ea40b837987f87cacf","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4430520ea59f9ee8797819ea40b837987f87cacf","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160205.tgz"},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160205.tgz_1454656070166_0.019713323563337326"},"directories":{}},"1.9.0-dev.20160206":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160206","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d27d10ce2ff013d66ff73890726b06587bda18fa","_id":"typescript@1.9.0-dev.20160206","_shasum":"8dc290f53473fa1acf771b2473342e1a99d91bd6","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8dc290f53473fa1acf771b2473342e1a99d91bd6","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160206.tgz"},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160206.tgz_1454742474366_0.9617997200693935"},"directories":{}},"1.9.0-dev.20160207":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160207","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d27d10ce2ff013d66ff73890726b06587bda18fa","_id":"typescript@1.9.0-dev.20160207","_shasum":"5cea8edbcda05464ff869b484e4291e740bf0184","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5cea8edbcda05464ff869b484e4291e740bf0184","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160207.tgz"},"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160207.tgz_1454828898519_0.22232033452019095"},"directories":{}},"1.9.0-dev.20160208":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160208","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"83c8c7db50c37394e24e2bef4332b78d5c0a2c6c","_id":"typescript@1.9.0-dev.20160208","_shasum":"ad7256de7632000e647ce49c7de50378a9e7ceda","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ad7256de7632000e647ce49c7de50378a9e7ceda","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160208.tgz"},"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160208.tgz_1454915281655_0.269433454843238"},"directories":{}},"1.9.0-dev.20160209":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160209","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"4bf104349d621d85a78dd7a45dbdb6b519d53998","_id":"typescript@1.9.0-dev.20160209","_shasum":"47a5f9d54f3a5dde770851b53465a6d9e61336d8","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"47a5f9d54f3a5dde770851b53465a6d9e61336d8","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160209.tgz"},"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160209.tgz_1455001669260_0.7950323321856558"},"directories":{}},"1.9.0-dev.20160210":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160210","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"dc0ff24dede91a29b8de39b4d0fe94ce2af26cba","_id":"typescript@1.9.0-dev.20160210","_shasum":"e5c36f17c4b85e16b176f54b646ce055ee5565c2","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e5c36f17c4b85e16b176f54b646ce055ee5565c2","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160210.tgz"},"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160210.tgz_1455088108575_0.23514309711754322"},"directories":{}},"1.9.0-dev.20160211":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160211","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"faeae5e099bd73175d0e43850918172c4b6beeb6","_id":"typescript@1.9.0-dev.20160211","_shasum":"aad950968463763470e71a8ba917e1945535a5cb","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"aad950968463763470e71a8ba917e1945535a5cb","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160211.tgz"},"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160211.tgz_1455174480938_0.11620918731205165"},"directories":{}},"1.9.0-dev.20160212":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160212","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"bf234887b0455deb142dce6854e77f4901533288","_id":"typescript@1.9.0-dev.20160212","_shasum":"17f75b4831493798328585de69176e86d4fbf425","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"17f75b4831493798328585de69176e86d4fbf425","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160212.tgz"},"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160212.tgz_1455260887734_0.40710390196181834"},"directories":{}},"1.9.0-dev.20160213":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160213","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c7fcd0204caf863f796fdb31b12f6c36debe431f","_id":"typescript@1.9.0-dev.20160213","_shasum":"223bf46fbfdb7113d32bef4f23db1ff03f9c94d3","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"223bf46fbfdb7113d32bef4f23db1ff03f9c94d3","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160213.tgz"},"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160213.tgz_1455347281222_0.5364826386794448"},"directories":{}},"1.9.0-dev.20160214":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160214","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"af9dc417478672e05925b2af8b5b5924471bb0f9","_id":"typescript@1.9.0-dev.20160214","_shasum":"e287ddc553655e8bea03d93d0de44049c1289513","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e287ddc553655e8bea03d93d0de44049c1289513","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160214.tgz"},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160214.tgz_1455433579553_0.06829693727195263"},"directories":{}},"1.9.0-dev.20160215":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160215","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"af9dc417478672e05925b2af8b5b5924471bb0f9","_id":"typescript@1.9.0-dev.20160215","_shasum":"8eb7b72ff0f52defd779d513592d1378c70afa6b","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8eb7b72ff0f52defd779d513592d1378c70afa6b","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160215.tgz"},"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160215.tgz_1455519957563_0.9513211254961789"},"directories":{}},"1.9.0-dev.20160216":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160216","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"af9dc417478672e05925b2af8b5b5924471bb0f9","_id":"typescript@1.9.0-dev.20160216","_shasum":"af635ab38efc724a3eb32b4afe6425916c691c5c","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"af635ab38efc724a3eb32b4afe6425916c691c5c","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160216.tgz"},"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160216.tgz_1455606361415_0.5276871973183006"},"directories":{}},"1.9.0-dev.20160217":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160217","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"bde20c4ec7aa93e832a4abafab8815643effd660","_id":"typescript@1.9.0-dev.20160217","_shasum":"513374d962e9720b0e840d3f5b4018a6d99a27a2","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"513374d962e9720b0e840d3f5b4018a6d99a27a2","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160217.tgz"},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160217.tgz_1455693060726_0.09490322903729975"},"directories":{}},"1.9.0-dev.20160218":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160218","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"8a050ea18d51ee631e2ba4bdd13103c83ae0153a","_id":"typescript@1.9.0-dev.20160218","_shasum":"c5f37a9928a7069a3d46882d8126cdd5fa0f7f7c","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"c5f37a9928a7069a3d46882d8126cdd5fa0f7f7c","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160218.tgz"},"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160218.tgz_1455779314841_0.9889128576032817"},"directories":{}},"1.9.0-dev.20160219":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160219","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"3663d400270ccae8b69cbeeded8ffdc8fa12d7ad","_id":"typescript@1.9.0-dev.20160219","_shasum":"ae271b3610b5267a9ca4c48dcbddedcde54dcbc7","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ae271b3610b5267a9ca4c48dcbddedcde54dcbc7","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160219.tgz"},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160219.tgz_1455865550471_0.8507915115915239"},"directories":{}},"1.9.0-dev.20160220":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160220","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"11ec01b4760ab6be402cb9ae1fb6f6ff13b2880f","_id":"typescript@1.9.0-dev.20160220","_shasum":"ee15956a40b4b38048f88d9755ac2aab863835d9","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ee15956a40b4b38048f88d9755ac2aab863835d9","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160220.tgz"},"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160220.tgz_1455951966168_0.9614685259293765"},"directories":{}},"1.9.0-dev.20160221":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160221","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"0436ba0cfbbc7ab431db53bd622b6f1988f72038","_id":"typescript@1.9.0-dev.20160221","_shasum":"2cfeb7b817062484294448c0cb9f9e116d34cbb6","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"2cfeb7b817062484294448c0cb9f9e116d34cbb6","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160221.tgz"},"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160221.tgz_1456038359902_0.7702808754984289"},"directories":{}},"1.9.0-dev.20160222":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160222","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"0436ba0cfbbc7ab431db53bd622b6f1988f72038","_id":"typescript@1.9.0-dev.20160222","_shasum":"7cb083649b2d2a114a924c55a38ed13b853ed06c","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"7cb083649b2d2a114a924c55a38ed13b853ed06c","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160222.tgz"},"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160222.tgz_1456124768245_0.6694028319325298"},"directories":{}},"1.8.2":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.2","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"2.3.4","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e5dd34f9e69f517182abfc996a10b8312b14e015","_id":"typescript@1.8.2","_shasum":"4d2ad7db172be67a913d09862b510133bad61b33","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4d2ad7db172be67a913d09862b510133bad61b33","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.2.tgz"},"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/typescript-1.8.2.tgz_1456180363305_0.6699868906289339"},"directories":{}},"1.9.0-dev.20160223":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160223","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e2c95551b348b10bed7d42fdaff857143e631a0d","_id":"typescript@1.9.0-dev.20160223","_shasum":"297112467fb2a19be8b318e831d7eee6d5bc934d","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"297112467fb2a19be8b318e831d7eee6d5bc934d","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160223.tgz"},"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160223.tgz_1456211306416_0.7794809127226472"},"directories":{}},"1.9.0-dev.20160224":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160224","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e2c95551b348b10bed7d42fdaff857143e631a0d","_id":"typescript@1.9.0-dev.20160224","_shasum":"315e3c25c7913b6740106c1f76201b4d3dd06f56","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"315e3c25c7913b6740106c1f76201b4d3dd06f56","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160224.tgz"},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160224.tgz_1456297561918_0.6679575839079916"},"directories":{}},"1.9.0-dev.20160225":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160225","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e2c95551b348b10bed7d42fdaff857143e631a0d","_id":"typescript@1.9.0-dev.20160225","_shasum":"924724117a1604dcad2899cff3c7018783c1d044","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"924724117a1604dcad2899cff3c7018783c1d044","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160225.tgz"},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160225.tgz_1456383958987_0.5908095738850534"},"directories":{}},"1.9.0-dev.20160226":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160226","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e2c95551b348b10bed7d42fdaff857143e631a0d","_id":"typescript@1.9.0-dev.20160226","_shasum":"26eb40a2a6b1c57fc359dc059624da7432d3992e","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"26eb40a2a6b1c57fc359dc059624da7432d3992e","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160226.tgz"},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160226.tgz_1456470359572_0.9021623290609568"},"directories":{}},"1.9.0-dev.20160227":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160227","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e2c95551b348b10bed7d42fdaff857143e631a0d","_id":"typescript@1.9.0-dev.20160227","_shasum":"98a5b72ddc29cd86614b0e59b422cf4e2dd2bd95","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"98a5b72ddc29cd86614b0e59b422cf4e2dd2bd95","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160227.tgz"},"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160227.tgz_1456556762515_0.19802480773068964"},"directories":{}},"1.9.0-dev.20160228":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160228","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e2c95551b348b10bed7d42fdaff857143e631a0d","_id":"typescript@1.9.0-dev.20160228","_shasum":"af70162002b8bea0602e49152f4ee1e36e00ced1","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"af70162002b8bea0602e49152f4ee1e36e00ced1","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160228.tgz"},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160228.tgz_1456643161066_0.06011231360025704"},"directories":{}},"1.9.0-dev.20160229":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160229","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e2c95551b348b10bed7d42fdaff857143e631a0d","_id":"typescript@1.9.0-dev.20160229","_shasum":"b8834b1b528a84a79ff91c661edbcb2228567a37","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"b8834b1b528a84a79ff91c661edbcb2228567a37","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160229.tgz"},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160229.tgz_1456729568054_0.8636588684748858"},"directories":{}},"1.9.0-dev.20160301":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160301","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e2c95551b348b10bed7d42fdaff857143e631a0d","_id":"typescript@1.9.0-dev.20160301","_shasum":"b80a86e10048ce442a86ce4bb1229e7388352619","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"b80a86e10048ce442a86ce4bb1229e7388352619","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160301.tgz"},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160301.tgz_1456815970858_0.07489930256269872"},"directories":{}},"1.8.5":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.5","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"2.3.4","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"dc4cd52a9a09bd4eee1fbebde98b41f2c503b335","_id":"typescript@1.8.5","_shasum":"3a985c107e329573c74ef068aa04470501cd07a3","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"3a985c107e329573c74ef068aa04470501cd07a3","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.5.tgz"},"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/typescript-1.8.5.tgz_1456873558742_0.867746451869607"},"directories":{}},"1.8.6":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.6","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"2.3.4","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"dc4cd52a9a09bd4eee1fbebde98b41f2c503b335","_id":"typescript@1.8.6","_shasum":"e68ff57682180a263ab3a41009fd792fd4ae5ba5","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e68ff57682180a263ab3a41009fd792fd4ae5ba5","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.6.tgz"},"_npmOperationalInternal":{"host":"packages-11-east.internal.npmjs.com","tmp":"tmp/typescript-1.8.6.tgz_1456881187432_0.06032153149135411"},"directories":{}},"1.8.7":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.7","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"2.3.4","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c9cf5f9cc2a781c9bdb00206d9a1038b53be6bda","_id":"typescript@1.8.7","_shasum":"35e3838de31c91cfe1d8c20e0e5785d386938a49","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"35e3838de31c91cfe1d8c20e0e5785d386938a49","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.7.tgz"},"_npmOperationalInternal":{"host":"packages-11-east.internal.npmjs.com","tmp":"tmp/typescript-1.8.7.tgz_1456882108211_0.4195348753128201"},"directories":{}},"1.9.0-dev.20160302":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160302","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e2c95551b348b10bed7d42fdaff857143e631a0d","_id":"typescript@1.9.0-dev.20160302","_shasum":"a0dc43ef30c4be8560e9635ff0ad392aca179b0c","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a0dc43ef30c4be8560e9635ff0ad392aca179b0c","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160302.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160302.tgz_1456902377274_0.24457713356241584"},"directories":{}},"1.9.0-dev.20160302.1":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160302.1","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"de47fcc113806e09df7c521edf500c6ab786459c","_id":"typescript@1.9.0-dev.20160302.1","_shasum":"f29aec19d2dec5ff52d387454762b7eafac50da1","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f29aec19d2dec5ff52d387454762b7eafac50da1","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160302.1.tgz"},"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160302.1.tgz_1456954470253_0.6838582698255777"},"directories":{}},"1.9.0-dev.20160303":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160303","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"0f6dbd02506eb61f18e7317693b1598bcf294a24","_id":"typescript@1.9.0-dev.20160303","_shasum":"776b4b2327777d518bd3915c10f0945c838c84c1","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"776b4b2327777d518bd3915c10f0945c838c84c1","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160303.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160303.tgz_1456988771804_0.688777522649616"},"directories":{}},"1.9.0-dev.20160304":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160304","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"311f8dd7d31c56ba962c73429d3007e03c2c113d","_id":"typescript@1.9.0-dev.20160304","_shasum":"8502bf04a90e1de5f4a7b3f5dcf154abcb938e2e","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8502bf04a90e1de5f4a7b3f5dcf154abcb938e2e","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160304.tgz"},"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160304.tgz_1457075164560_0.5056934119202197"},"directories":{}},"1.9.0-dev.20160305":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160305","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a5354608fcafd986dcede6aa9832431a23cd3cdf","_id":"typescript@1.9.0-dev.20160305","_shasum":"3dfb4ade56cfb32645b42158b9d2372a13318136","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"3dfb4ade56cfb32645b42158b9d2372a13318136","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160305.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160305.tgz_1457161570402_0.30450342409312725"},"directories":{}},"1.9.0-dev.20160306":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160306","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a5354608fcafd986dcede6aa9832431a23cd3cdf","_id":"typescript@1.9.0-dev.20160306","_shasum":"2433161eab5d4be09a02103dc3d4d5712d837f4e","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"2433161eab5d4be09a02103dc3d4d5712d837f4e","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160306.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160306.tgz_1457247981217_0.029852013802155852"},"directories":{}},"1.9.0-dev.20160307":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160307","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a5354608fcafd986dcede6aa9832431a23cd3cdf","_id":"typescript@1.9.0-dev.20160307","_shasum":"5eb1b189f3ad6aba1ac53b57594173a9595aa2e0","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5eb1b189f3ad6aba1ac53b57594173a9595aa2e0","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160307.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160307.tgz_1457334376969_0.07311495346948504"},"directories":{}},"1.9.0-dev.20160308":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160308","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"01c329c05ed52bd13ff1ba48bc673c145ebc9a8f","_id":"typescript@1.9.0-dev.20160308","_shasum":"17a9bd1f008f4683b43c5a57bc5f8a2bc09ade60","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"17a9bd1f008f4683b43c5a57bc5f8a2bc09ade60","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160308.tgz"},"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160308.tgz_1457420777849_0.6702823534142226"},"directories":{}},"1.9.0-dev.20160309":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160309","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"cc57ae0205e1c69567509c1d81c41d57235286d1","_id":"typescript@1.9.0-dev.20160309","_shasum":"5aff7d8dbacf9dde568615765802fe2af2ac294a","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5aff7d8dbacf9dde568615765802fe2af2ac294a","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160309.tgz"},"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160309.tgz_1457507173755_0.24544133385643363"},"directories":{}},"1.9.0-dev.20160310":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160310","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"f06423bffc705488f0f6c14ea70b8135a2421e34","_id":"typescript@1.9.0-dev.20160310","_shasum":"9e83c31cd1e7ea68019508d974ba7788594ede3e","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"9e83c31cd1e7ea68019508d974ba7788594ede3e","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160310.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160310.tgz_1457593580951_0.5331563816871494"},"directories":{}},"1.9.0-dev.20160311":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160311","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a75a02cc7b206fe4643d518d9903e036d8c172ae","_id":"typescript@1.9.0-dev.20160311","_shasum":"6a4069a8198b85fc551ac9d0459f4ed9b9ae6755","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"6a4069a8198b85fc551ac9d0459f4ed9b9ae6755","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160311.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160311.tgz_1457679985408_0.9390316719654948"},"directories":{}},"1.9.0-dev.20160312":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160312","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a75a02cc7b206fe4643d518d9903e036d8c172ae","_id":"typescript@1.9.0-dev.20160312","_shasum":"19ce36a1747641bf011ac281699df6637ff4087b","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"19ce36a1747641bf011ac281699df6637ff4087b","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160312.tgz"},"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160312.tgz_1457766393541_0.5865376011934131"},"directories":{}},"1.9.0-dev.20160313":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160313","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"74e498de03a045c36665a578a93cebde7bacd787","_id":"typescript@1.9.0-dev.20160313","_shasum":"07d637213e8f4ceb3225f1aeabaf949a69d539e1","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"07d637213e8f4ceb3225f1aeabaf949a69d539e1","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160313.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160313.tgz_1457852781074_0.6428778232075274"},"directories":{}},"1.9.0-dev.20160315":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160315","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"9f6f871e0128697105cde572f476031568df86cf","_id":"typescript@1.9.0-dev.20160315","_shasum":"421186197ba8690f360c5514f291a41b44e066e1","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"421186197ba8690f360c5514f291a41b44e066e1","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160315.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160315.tgz_1458013502192_0.6463880718220025"},"directories":{}},"1.9.0-dev.20160316":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160316","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"1156141b5e8d577451f03f36832448e6cac34459","_id":"typescript@1.9.0-dev.20160316","_shasum":"0c87fc702dd178a6f685f6c93dd69230dc73fdc5","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0c87fc702dd178a6f685f6c93dd69230dc73fdc5","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160316.tgz"},"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160316.tgz_1458108484363_0.450467805378139"},"directories":{}},"1.8.9":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.9","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"2.3.4","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"9ef75534e0fd5f92bef86b520dff768c11a2df4d","_id":"typescript@1.8.9","_shasum":"b3b3a74059fd31cbd3ecad95d62465939e7ed5fa","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"b3b3a74059fd31cbd3ecad95d62465939e7ed5fa","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.9.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.8.9.tgz_1458169371557_0.7292261146940291"},"directories":{}},"1.9.0-dev.20160317":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160317","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"b5f418ffcc79a5b724239701d73b1812c09af2d2","_id":"typescript@1.9.0-dev.20160317","_shasum":"e962b0013a312a10571a2f7d3dc4f40fdb1f5417","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e962b0013a312a10571a2f7d3dc4f40fdb1f5417","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160317.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160317.tgz_1458194774697_0.21504958672448993"},"directories":{}},"1.9.0-dev.20160318":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160318","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"279fec7a7d62407711ce57dc3e194df3b9da7d85","_id":"typescript@1.9.0-dev.20160318","_shasum":"202201fe08c28430ab9854f6b947e55d5fa596b9","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"202201fe08c28430ab9854f6b947e55d5fa596b9","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160318.tgz"},"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160318.tgz_1458281194875_0.7512446625623852"},"directories":{}},"1.9.0-dev.20160319":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160319","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"32178acdfe172354c1cac131c303ead7831c9334","_id":"typescript@1.9.0-dev.20160319","_shasum":"d2ea94b65287f29b58cb587cd178b1a6379ecb47","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d2ea94b65287f29b58cb587cd178b1a6379ecb47","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160319.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160319.tgz_1458367584325_0.18974966928362846"},"directories":{}},"1.9.0-dev.20160320":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160320","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"32178acdfe172354c1cac131c303ead7831c9334","_id":"typescript@1.9.0-dev.20160320","_shasum":"7ce83c826608496d8381d1949097a2d1547c0b58","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"7ce83c826608496d8381d1949097a2d1547c0b58","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160320.tgz"},"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160320.tgz_1458453972842_0.4057519566267729"},"directories":{}},"1.9.0-dev.20160321":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160321","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"32178acdfe172354c1cac131c303ead7831c9334","_id":"typescript@1.9.0-dev.20160321","_shasum":"80ef26d666998ebc5af75bdc5dbc6f820f46ea79","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"80ef26d666998ebc5af75bdc5dbc6f820f46ea79","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160321.tgz"},"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160321.tgz_1458540385260_0.4587331262882799"},"directories":{}},"1.9.0-dev.20160322":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160322","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"3853bb86d0f26e150666ab736092824eb781babc","_id":"typescript@1.9.0-dev.20160322","_shasum":"753b6a161032fbca00e108e51a37f4393d81a32f","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"753b6a161032fbca00e108e51a37f4393d81a32f","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160322.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160322.tgz_1458626778766_0.22957354900427163"},"directories":{}},"1.9.0-dev.20160323":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160323","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"9094e01e75d90c0d96796209bbbf1300eec61271","_id":"typescript@1.9.0-dev.20160323","_shasum":"73fc33417b0de9fe670582090b4ba8c9ddf576c6","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"73fc33417b0de9fe670582090b4ba8c9ddf576c6","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160323.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160323.tgz_1458713179917_0.9914855759125203"},"directories":{}},"1.9.0-dev.20160324":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160324","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"730f18955dc17068be33691f0fb0e0285ebbf9f5","_id":"typescript@1.9.0-dev.20160324","_shasum":"b2bd8ee93267a18ccf3165b6a3127ac97d9dd1c0","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"b2bd8ee93267a18ccf3165b6a3127ac97d9dd1c0","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160324.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160324.tgz_1458799583843_0.8971534639131278"},"directories":{}},"1.9.0-dev.20160325":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160325","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6cc1b174fb6865f9558002d582a675127a4005ca","_id":"typescript@1.9.0-dev.20160325","_shasum":"5a97256adff928e4bc9cae4940a51b01d09b933a","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5a97256adff928e4bc9cae4940a51b01d09b933a","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160325.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160325.tgz_1458885982883_0.17193096573464572"},"directories":{}},"1.9.0-dev.20160326":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160326","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"8dc3b2eff0671fcc1b046d80de2c8991c920a65e","_id":"typescript@1.9.0-dev.20160326","_shasum":"3d0ecf975c85686d5bbc81464ba3ca5456d5eb61","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"3d0ecf975c85686d5bbc81464ba3ca5456d5eb61","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160326.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160326.tgz_1458972386357_0.5337059921585023"},"directories":{}},"1.9.0-dev.20160327":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160327","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"89350b35f040ce120db2e5a08db190bd3e9741fe","_id":"typescript@1.9.0-dev.20160327","_shasum":"fd5cd642bef9178ad44c1e2704c043cc2c38457c","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"fd5cd642bef9178ad44c1e2704c043cc2c38457c","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160327.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160327.tgz_1459058781064_0.05373280239291489"},"directories":{}},"1.9.0-dev.20160328":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160328","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"89350b35f040ce120db2e5a08db190bd3e9741fe","_id":"typescript@1.9.0-dev.20160328","_shasum":"ddde82718701d9997021e88cac6a9ddb78438de0","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ddde82718701d9997021e88cac6a9ddb78438de0","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160328.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160328.tgz_1459145251419_0.5560931398067623"},"directories":{}},"1.9.0-dev.20160329":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160329","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"25f8ef336c56e76f57e7303197186c6a76e3fd42","_id":"typescript@1.9.0-dev.20160329","_shasum":"ef363c2db2165cfa989de035a12a4b7e5ef610b5","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ef363c2db2165cfa989de035a12a4b7e5ef610b5","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160329.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160329.tgz_1459231583738_0.6694845447782427"},"directories":{}},"1.9.0-dev.20160330":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160330","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"0556b15690d07cd9fdbd0ed40294c4e44b82a44a","_id":"typescript@1.9.0-dev.20160330","_shasum":"cab4feefe6bf90b40876e080311db47cbf75596e","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"cab4feefe6bf90b40876e080311db47cbf75596e","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160330.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160330.tgz_1459317983917_0.07969942642375827"},"directories":{}},"1.9.0-dev.20160331":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160331","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"68bdbe04e73fc4eb66d744a1a89bbd3baf162a87","_id":"typescript@1.9.0-dev.20160331","_shasum":"384895ed8cd10acaeeca05fc56b998f3fc5a5223","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"384895ed8cd10acaeeca05fc56b998f3fc5a5223","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160331.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160331.tgz_1459404522625_0.5131860044784844"},"directories":{}},"1.9.0-dev.20160401":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160401","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"68bdbe04e73fc4eb66d744a1a89bbd3baf162a87","_id":"typescript@1.9.0-dev.20160401","_shasum":"acc3b4c112d2ac8c6acf930fb5da2d7e4c1860ff","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"acc3b4c112d2ac8c6acf930fb5da2d7e4c1860ff","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160401.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160401.tgz_1459490815932_0.7359500741586089"},"directories":{}},"1.9.0-dev.20160402":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160402","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"68bdbe04e73fc4eb66d744a1a89bbd3baf162a87","_id":"typescript@1.9.0-dev.20160402","_shasum":"207b08676355401e0ad65640655a08c5cf80b721","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"207b08676355401e0ad65640655a08c5cf80b721","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160402.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160402.tgz_1459577208276_0.7721319389529526"},"directories":{}},"1.9.0-dev.20160403":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160403","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"68bdbe04e73fc4eb66d744a1a89bbd3baf162a87","_id":"typescript@1.9.0-dev.20160403","_shasum":"a2bbb6312bc0c4d0a9827772bdfe0f008727d419","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a2bbb6312bc0c4d0a9827772bdfe0f008727d419","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160403.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160403.tgz_1459663603517_0.6288528817240149"},"directories":{}},"1.9.0-dev.20160404":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160404","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"68bdbe04e73fc4eb66d744a1a89bbd3baf162a87","_id":"typescript@1.9.0-dev.20160404","_shasum":"0e7ad7886a1af966ab42af9c3fb1fef0e269781c","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0e7ad7886a1af966ab42af9c3fb1fef0e269781c","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160404.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160404.tgz_1459749996164_0.5945021682418883"},"directories":{}},"1.9.0-dev.20160405":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160405","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"11887ccc29c8c4a087ad8b9929b37307d16e13ab","_id":"typescript@1.9.0-dev.20160405","_shasum":"72db1600a5b884c528cc389ecb15b6d3cbfd35c5","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"72db1600a5b884c528cc389ecb15b6d3cbfd35c5","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160405.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160405.tgz_1459836528239_0.7472022236324847"},"directories":{}},"1.9.0-dev.20160406":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160406","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"65fdfd214c5594efc7700b85b5f83fce714a5e2a","_id":"typescript@1.9.0-dev.20160406","_shasum":"ed53dbc66f3ee8ea310501fa1c97afef7ae90b3f","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ed53dbc66f3ee8ea310501fa1c97afef7ae90b3f","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160406.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160406.tgz_1459922819856_0.5366591047495604"},"directories":{}},"1.9.0-dev.20160407":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160407","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"3acff6def62aee4e398687b4356b7c18c28fcd92","_id":"typescript@1.9.0-dev.20160407","_shasum":"8f7076ec834cda5d585b97bec42eafff14fc7cec","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8f7076ec834cda5d585b97bec42eafff14fc7cec","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160407.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160407.tgz_1460009328830_0.541105451527983"},"directories":{}},"1.9.0-dev.20160408":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160408","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"58efc2ee05c5053e69fdcee5bfc8234b598b32a3","_id":"typescript@1.9.0-dev.20160408","_shasum":"0fab58c2fa44bd7562c9b410a495b29acfce4689","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0fab58c2fa44bd7562c9b410a495b29acfce4689","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160408.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160408.tgz_1460095708891_0.8075578715652227"},"directories":{}},"1.9.0-dev.20160409":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160409","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ac6224d600ceeaca02dad0890b776e004d462e8b","_id":"typescript@1.9.0-dev.20160409","_shasum":"8c620b87bf8887d76738b859d219f047f7b2e8f5","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8c620b87bf8887d76738b859d219f047f7b2e8f5","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160409.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160409.tgz_1460182111990_0.059267388889566064"},"directories":{}},"1.9.0-dev.20160411":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160411","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"1.9.0-dev.20160408","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d280b1b7bc9f71491619fa61ee3fa99b54b96b26","_id":"typescript@1.9.0-dev.20160411","_shasum":"e44cf2ef6808d571db70af37f95ef10e43b9f259","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e44cf2ef6808d571db70af37f95ef10e43b9f259","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160411.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160411.tgz_1460395767996_0.1391923485789448"},"directories":{}},"1.9.0-dev.20160412":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160412","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d280b1b7bc9f71491619fa61ee3fa99b54b96b26","_id":"typescript@1.9.0-dev.20160412","_shasum":"c51a916638690883c65614c6c23c885673615b23","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"c51a916638690883c65614c6c23c885673615b23","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160412.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160412.tgz_1460441209759_0.5100526863243431"},"directories":{}},"1.8.10":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.10","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"2.3.4","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"794c57478ec2a44ee15fb3e245a4c5d2d1612375","_id":"typescript@1.8.10","_shasum":"b475d6e0dff0bf50f296e5ca6ef9fbb5c7320f1e","_from":".","_npmVersion":"2.14.2","_nodeVersion":"5.9.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"b475d6e0dff0bf50f296e5ca6ef9fbb5c7320f1e","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.10.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.8.10.tgz_1460493736776_0.9304528103675693"},"directories":{}},"1.9.0-dev.20160413":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160413","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d280b1b7bc9f71491619fa61ee3fa99b54b96b26","_id":"typescript@1.9.0-dev.20160413","_shasum":"229220b1b49f8d49806237e4b4191f34a8a82010","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"229220b1b49f8d49806237e4b4191f34a8a82010","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160413.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160413.tgz_1460527612365_0.5787558434531093"},"directories":{}},"1.9.0-dev.20160414":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160414","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d280b1b7bc9f71491619fa61ee3fa99b54b96b26","_id":"typescript@1.9.0-dev.20160414","_shasum":"cbbdb44e7a96d1442e9eaeab62ac7a94384f43d8","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"cbbdb44e7a96d1442e9eaeab62ac7a94384f43d8","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160414.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160414.tgz_1460614033722_0.33345846668817103"},"directories":{}},"1.9.0-dev.20160415":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160415","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d280b1b7bc9f71491619fa61ee3fa99b54b96b26","_id":"typescript@1.9.0-dev.20160415","_shasum":"1dc503dd61b977a98992af4d1b8346d8ddad687a","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"1dc503dd61b977a98992af4d1b8346d8ddad687a","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160415.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160415.tgz_1460700417038_0.9935393556952477"},"directories":{}},"1.9.0-dev.20160416":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160416","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d280b1b7bc9f71491619fa61ee3fa99b54b96b26","_id":"typescript@1.9.0-dev.20160416","_shasum":"10d30c5fc4163ce976350b3b9c58e15f9f8afd23","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"10d30c5fc4163ce976350b3b9c58e15f9f8afd23","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160416.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160416.tgz_1460786813910_0.05212209839373827"},"directories":{}},"1.9.0-dev.20160417":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160417","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d280b1b7bc9f71491619fa61ee3fa99b54b96b26","_id":"typescript@1.9.0-dev.20160417","_shasum":"fb8ece2bc6698788c74ce44b804d1e80b9ef2d50","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"fb8ece2bc6698788c74ce44b804d1e80b9ef2d50","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160417.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160417.tgz_1460873218025_0.6502671642228961"},"directories":{}},"1.9.0-dev.20160418":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160418","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d280b1b7bc9f71491619fa61ee3fa99b54b96b26","_id":"typescript@1.9.0-dev.20160418","_shasum":"f3dd5803c3990594d947f946a395da87f5157799","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f3dd5803c3990594d947f946a395da87f5157799","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160418.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160418.tgz_1460959614463_0.7953340262174606"},"directories":{}},"1.9.0-dev.20160419":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160419","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d280b1b7bc9f71491619fa61ee3fa99b54b96b26","_id":"typescript@1.9.0-dev.20160419","_shasum":"0aa600013b22aa0bc376323fa8f7b9b41a827c00","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0aa600013b22aa0bc376323fa8f7b9b41a827c00","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160419.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160419.tgz_1461046020216_0.6218960657715797"},"directories":{}},"1.9.0-dev.20160420":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160420","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d280b1b7bc9f71491619fa61ee3fa99b54b96b26","_id":"typescript@1.9.0-dev.20160420","_shasum":"654e74639fae480ddfd8c90ea4ad4c6588ab5bda","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"654e74639fae480ddfd8c90ea4ad4c6588ab5bda","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160420.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160420.tgz_1461132418680_0.9160798492375761"},"directories":{}},"1.9.0-dev.20160421":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160421","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d280b1b7bc9f71491619fa61ee3fa99b54b96b26","_id":"typescript@1.9.0-dev.20160421","_shasum":"c5e2fc29823ad973feda0950d5dee0deabf3a3cf","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"c5e2fc29823ad973feda0950d5dee0deabf3a3cf","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160421.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160421.tgz_1461218924744_0.09192655375227332"},"directories":{}},"1.9.0-dev.20160422":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160422","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d280b1b7bc9f71491619fa61ee3fa99b54b96b26","_id":"typescript@1.9.0-dev.20160422","_shasum":"0d1cb660651fa5029019cd6491b5667215a47db2","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0d1cb660651fa5029019cd6491b5667215a47db2","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160422.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160422.tgz_1461305207804_0.2526260947342962"},"directories":{}},"1.9.0-dev.20160423":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160423","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d280b1b7bc9f71491619fa61ee3fa99b54b96b26","_id":"typescript@1.9.0-dev.20160423","_shasum":"99f26b6977769eda17722334c2551eae1ebb6565","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"99f26b6977769eda17722334c2551eae1ebb6565","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160423.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160423.tgz_1461391622289_0.9419101537205279"},"directories":{}},"1.9.0-dev.20160424":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160424","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d280b1b7bc9f71491619fa61ee3fa99b54b96b26","_id":"typescript@1.9.0-dev.20160424","_shasum":"9b91e6b74b106ff3ed397108472242b86cc72606","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"9b91e6b74b106ff3ed397108472242b86cc72606","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160424.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160424.tgz_1461478009410_0.9589254218153656"},"directories":{}},"1.9.0-dev.20160425":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160425","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d280b1b7bc9f71491619fa61ee3fa99b54b96b26","_id":"typescript@1.9.0-dev.20160425","_shasum":"fea561d6b5febd5b6eaafd72fbf91e4e66f18b40","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"fea561d6b5febd5b6eaafd72fbf91e4e66f18b40","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160425.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160425.tgz_1461564408038_0.04081986588425934"},"directories":{}},"1.9.0-dev.20160426":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160426","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"da0197527f1a3759c5c6efa699257cfb36a12420","_id":"typescript@1.9.0-dev.20160426","_shasum":"9bcbeeb247305885718a5320225ced4d0e203912","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"9bcbeeb247305885718a5320225ced4d0e203912","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160426.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160426.tgz_1461650812035_0.5928841661661863"},"directories":{}},"1.9.0-dev.20160427":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160427","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e00f573de4955022d184ce100123a78d75941525","_id":"typescript@1.9.0-dev.20160427","_shasum":"ab8d1a6189b27df917e70a0ab3069a3d45c05b07","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ab8d1a6189b27df917e70a0ab3069a3d45c05b07","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160427.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160427.tgz_1461780529953_0.39602549583651125"},"directories":{}},"1.9.0-dev.20160428":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160428","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"4ebf4880e5ba28b8f39d7a55dd26e330349e165e","_id":"typescript@1.9.0-dev.20160428","_shasum":"d9c6c5a532fbe18a9b3ffee297b1ade602d4a18e","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d9c6c5a532fbe18a9b3ffee297b1ade602d4a18e","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160428.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160428.tgz_1461863726233_0.22797652590088546"},"directories":{}},"1.9.0-dev.20160428-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160428-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"4ebf4880e5ba28b8f39d7a55dd26e330349e165e","_id":"typescript@1.9.0-dev.20160428-1.0","_shasum":"3580c328cb539d7a7e35b14838ac9b3dda5a36d1","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"3580c328cb539d7a7e35b14838ac9b3dda5a36d1","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160428-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160428-1.0.tgz_1461879631948_0.8235606146045029"},"directories":{}},"1.9.0-dev.20160429":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160429","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"91201211f438ff992ebc28ef94ab0bf4fe563930","_id":"typescript@1.9.0-dev.20160429","_shasum":"03d8ae75fa9811f449a8d3efcaa0e4ba4fa5ef94","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"03d8ae75fa9811f449a8d3efcaa0e4ba4fa5ef94","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160429.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160429.tgz_1461910068825_0.3978662225417793"},"directories":{}},"1.9.0-dev.20160430":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160430","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d1b60f8bfb6ff63521b36ff9cff024da2d544363","_id":"typescript@1.9.0-dev.20160430","_shasum":"3cf8c3e1eb66c8eb4ffcfadc22c24e6c149e34af","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"3cf8c3e1eb66c8eb4ffcfadc22c24e6c149e34af","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160430.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160430.tgz_1461996469658_0.4692409059498459"},"directories":{}},"1.9.0-dev.20160501":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160501","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"bc5b6dc19ca0c9d2391eb24ba035775dcecda7aa","_id":"typescript@1.9.0-dev.20160501","_shasum":"cd2d54f7f10cef7a4c531289eb80c13725117d3d","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"cd2d54f7f10cef7a4c531289eb80c13725117d3d","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160501.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160501.tgz_1462082864543_0.1551774051040411"},"directories":{}},"1.9.0-dev.20160502":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160502","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"10d09a739b1264e5b30fcdca826b4c79f12f8b3d","_id":"typescript@1.9.0-dev.20160502","_shasum":"7d56c329f4655bd5cf7f957e78dc45c64e6300b6","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"7d56c329f4655bd5cf7f957e78dc45c64e6300b6","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160502.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160502.tgz_1462169265627_0.5442298646084964"},"directories":{}},"1.9.0-dev.20160503":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160503","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2ff9c915a02f07a37a1f135d6e7765399e113f0f","_id":"typescript@1.9.0-dev.20160503","_shasum":"600898119e3301f26a184b9aba124d4ac9f427ff","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"600898119e3301f26a184b9aba124d4ac9f427ff","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160503.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160503.tgz_1462255676770_0.8820939129218459"},"directories":{}},"1.9.0-dev.20160504":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160504","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e9122a9f34079d865ea6bbacc5e0406d9d4c6b8f","_id":"typescript@1.9.0-dev.20160504","_shasum":"02aae60e2094556569a9117a89ae4a36b73c4a0a","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"02aae60e2094556569a9117a89ae4a36b73c4a0a","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160504.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160504.tgz_1462342059888_0.9334118121769279"},"directories":{}},"1.9.0-dev.20160505":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160505","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"674e84bd26854e835f783ab6411ecad353440e07","_id":"typescript@1.9.0-dev.20160505","_shasum":"24bcdfc86e448418c1eefcaa9950b657822cc536","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"24bcdfc86e448418c1eefcaa9950b657822cc536","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160505.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160505.tgz_1462428464409_0.8521364210173488"},"directories":{}},"1.9.0-dev.20160506":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160506","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"bc6d6ea49a855294eca44323c269ed13ada0ff05","_id":"typescript@1.9.0-dev.20160506","_shasum":"19f79b5e30512217f0d1fb989ed18ddaeecff7c7","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"19f79b5e30512217f0d1fb989ed18ddaeecff7c7","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160506.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160506.tgz_1462514872745_0.6224246406927705"},"directories":{}},"1.9.0-dev.20160507":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160507","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"955cc69c70c0ccb4030357e4e6808fff740503ee","_id":"typescript@1.9.0-dev.20160507","_shasum":"91610cad5e4f5112dce731ae36feca97445919f0","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"91610cad5e4f5112dce731ae36feca97445919f0","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160507.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160507.tgz_1462601283484_0.10752718057483435"},"directories":{}},"1.9.0-dev.20160508":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160508","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"72c19ec80603bb129f5bcd28e422263bdc59a67a","_id":"typescript@1.9.0-dev.20160508","_shasum":"c63e4ea69ee05ebb929202b67751b78d34f39485","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"c63e4ea69ee05ebb929202b67751b78d34f39485","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160508.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160508.tgz_1462687665522_0.5605683689936996"},"directories":{}},"1.9.0-dev.20160509":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160509","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"72c19ec80603bb129f5bcd28e422263bdc59a67a","_id":"typescript@1.9.0-dev.20160509","_shasum":"a42783c7ae63e6ab0356017f2e90a81669ff8af6","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a42783c7ae63e6ab0356017f2e90a81669ff8af6","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160509.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160509.tgz_1462774058200_0.2839383187238127"},"directories":{}},"1.9.0-dev.20160510":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160510","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"16fccf5d38457510e49c5e49af87b161083a46b0","_id":"typescript@1.9.0-dev.20160510","_shasum":"a692b160bf8b8028830b7d8ba6ccfcf9b2016af4","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a692b160bf8b8028830b7d8ba6ccfcf9b2016af4","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160510.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160510.tgz_1462860511997_0.8680063146166503"},"directories":{}},"1.9.0-dev.20160511":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160511","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"b68e93966a976f1609b78db023f379263081722f","_id":"typescript@1.9.0-dev.20160511","_shasum":"aa26c9646737bc2db5b62619d91c25336eabbf51","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"aa26c9646737bc2db5b62619d91c25336eabbf51","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160511.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160511.tgz_1462946872047_0.8531200606375933"},"directories":{}},"1.9.0-dev.20160512":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160512","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d8d5dafe1a701a0b9466e53637f0ff3c63d55835","_id":"typescript@1.9.0-dev.20160512","_shasum":"ae6260f63c8bf3103d40a1b2ab7392747ffdd4a9","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ae6260f63c8bf3103d40a1b2ab7392747ffdd4a9","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160512.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160512.tgz_1463033278560_0.7497424657922238"},"directories":{}},"1.9.0-dev.20160513":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160513","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"cf749307b9c5f100514964974382153fb5ddc172","_id":"typescript@1.9.0-dev.20160513","_shasum":"1e41c70e7ec2544bf11c9b2ffcf67054fb90aeef","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"1e41c70e7ec2544bf11c9b2ffcf67054fb90aeef","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160513.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160513.tgz_1463119672955_0.38495120662264526"},"directories":{}},"1.9.0-dev.20160514":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160514","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"cf749307b9c5f100514964974382153fb5ddc172","_id":"typescript@1.9.0-dev.20160514","_shasum":"6024bc10d8a953b271232ee3379d472cf0b1e206","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"6024bc10d8a953b271232ee3379d472cf0b1e206","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160514.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160514.tgz_1463206056860_0.8671938341576606"},"directories":{}},"1.9.0-dev.20160515":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160515","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"cf749307b9c5f100514964974382153fb5ddc172","_id":"typescript@1.9.0-dev.20160515","_shasum":"7cebafc17db5739a0b7e1bd2b0676356ddbe8015","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"7cebafc17db5739a0b7e1bd2b0676356ddbe8015","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160515.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160515.tgz_1463292466119_0.6810538019053638"},"directories":{}},"1.9.0-dev.20160516":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160516","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"cf749307b9c5f100514964974382153fb5ddc172","_id":"typescript@1.9.0-dev.20160516","_shasum":"0428e87817b8cccfa578f03a3801bb2cc95b6ebf","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0428e87817b8cccfa578f03a3801bb2cc95b6ebf","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160516.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160516.tgz_1463378869648_0.21358249825425446"},"directories":{}},"1.9.0-dev.20160517-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160517-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"3fb16f5930e32c9e59a52fe978678e9d3b195e76","_id":"typescript@1.9.0-dev.20160517-1.0","_shasum":"aedf47b5ef7eb3d995290a5a8e863c37de405635","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"aedf47b5ef7eb3d995290a5a8e863c37de405635","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160517-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160517-1.0.tgz_1463465264772_0.694688108516857"},"directories":{}},"1.9.0-dev.20160518-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160518-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c62b6cb6fc7d0b01696816e04dfb70f68d826541","_id":"typescript@1.9.0-dev.20160518-1.0","_shasum":"764c7fe54fccf976fbb42070d355cdd25fb8d97f","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"764c7fe54fccf976fbb42070d355cdd25fb8d97f","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160518-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160518-1.0.tgz_1463551664224_0.10587316239252687"},"directories":{}},"1.9.0-dev.20160519-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160519-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"9ffc7a9df91e488b120720306c8f4a85ed86ab7d","_id":"typescript@1.9.0-dev.20160519-1.0","_shasum":"8bc100161ada9e5ee77487ee05d5004e2253683f","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8bc100161ada9e5ee77487ee05d5004e2253683f","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160519-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160519-1.0.tgz_1463638111297_0.44213212723843753"},"directories":{}},"1.9.0-dev.20160520-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160520-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"f95f51fefcc3d169972e3f2e4275e6e97c105a81","_id":"typescript@1.9.0-dev.20160520-1.0","_shasum":"36f18a2e69c7d91fe7255d867b55f2f295cafe9a","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"36f18a2e69c7d91fe7255d867b55f2f295cafe9a","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160520-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160520-1.0.tgz_1463724469221_0.14544494962319732"},"directories":{}},"1.9.0-dev.20160521-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160521-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d69f57bc1db5e68cf7b2a253fe9d3c1f6e348fb8","_id":"typescript@1.9.0-dev.20160521-1.0","_shasum":"2dac650ba25dd48247c1acef041bd0cb233f3d0c","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"2dac650ba25dd48247c1acef041bd0cb233f3d0c","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160521-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160521-1.0.tgz_1463810866444_0.45348995574750006"},"directories":{}},"1.9.0-dev.20160522-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160522-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"3f9efa039aff8db77c791ddad2dc6c933151f963","_id":"typescript@1.9.0-dev.20160522-1.0","_shasum":"6e79581b1cc4ffdcd16d95b80e30464f7d370aa9","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"6e79581b1cc4ffdcd16d95b80e30464f7d370aa9","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160522-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160522-1.0.tgz_1463897250442_0.7497013963293284"},"directories":{}},"1.9.0-dev.20160523-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160523-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"3f9efa039aff8db77c791ddad2dc6c933151f963","_id":"typescript@1.9.0-dev.20160523-1.0","_shasum":"eb9fb14d437ea8def6083e1be6946c4c3d235465","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"eb9fb14d437ea8def6083e1be6946c4c3d235465","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160523-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160523-1.0.tgz_1463983642667_0.24825826566666365"},"directories":{}},"1.9.0-dev.20160524-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160524-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"27292e4292554a219ab3acd1e87935a4871f2979","_id":"typescript@1.9.0-dev.20160524-1.0","_shasum":"cd0e0433924456ae6214fae6f7b177407bb323e4","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"cd0e0433924456ae6214fae6f7b177407bb323e4","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160524-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160524-1.0.tgz_1464070110959_0.280155367217958"},"directories":{}},"1.9.0-dev.20160525-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160525-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"7173fa8d024d6a251d5b4f3c4a24b0b8adc4f12f","_id":"typescript@1.9.0-dev.20160525-1.0","_shasum":"36aeba8ea2b642bf278f747722789ab653dc1ec5","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"36aeba8ea2b642bf278f747722789ab653dc1ec5","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160525-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160525-1.0.tgz_1464156448928_0.2952012966852635"},"directories":{}},"1.9.0-dev.20160526-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160526-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6173696b257f7c2d9673917c51c3a7d07c05fbfc","_id":"typescript@1.9.0-dev.20160526-1.0","_shasum":"f5402223ee142848bc90aa819b8421b8c8ea96cb","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f5402223ee142848bc90aa819b8421b8c8ea96cb","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160526-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160526-1.0.tgz_1464242917310_0.45966357295401394"},"directories":{}},"1.9.0-dev.20160527-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160527-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"154729d40e255182da274dad7b7c383c3e8c9cfd","_id":"typescript@1.9.0-dev.20160527-1.0","_shasum":"b05887fb272acde401262d5972299e4cd7f6f27d","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"b05887fb272acde401262d5972299e4cd7f6f27d","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160527-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160527-1.0.tgz_1464329292247_0.18406790774315596"},"directories":{}},"1.9.0-dev.20160528-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160528-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e9de47f6a95c29cc0776c4ca402df804aa732879","_id":"typescript@1.9.0-dev.20160528-1.0","_shasum":"835ac1c4ad6fb36484c14d049dc60a5b1f61862b","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"835ac1c4ad6fb36484c14d049dc60a5b1f61862b","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160528-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160528-1.0.tgz_1464415682692_0.8020553400274366"},"directories":{}},"1.9.0-dev.20160529-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160529-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e9de47f6a95c29cc0776c4ca402df804aa732879","_id":"typescript@1.9.0-dev.20160529-1.0","_shasum":"8a843079b6c72dcbdc446f1339974b5bd922684a","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8a843079b6c72dcbdc446f1339974b5bd922684a","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160529-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160529-1.0.tgz_1464502084183_0.12294790963642299"},"directories":{}},"1.9.0-dev.20160530-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160530-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e9de47f6a95c29cc0776c4ca402df804aa732879","_id":"typescript@1.9.0-dev.20160530-1.0","_shasum":"d906c96e572b20e2d3d7ddd617f034b00da973c6","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d906c96e572b20e2d3d7ddd617f034b00da973c6","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160530-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160530-1.0.tgz_1464588463043_0.9400265559088439"},"directories":{}},"1.9.0-dev.20160531-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160531-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e9de47f6a95c29cc0776c4ca402df804aa732879","_id":"typescript@1.9.0-dev.20160531-1.0","_shasum":"0f5beb937622a0fd10b7d030a686aa0a9f34fb0f","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0f5beb937622a0fd10b7d030a686aa0a9f34fb0f","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160531-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160531-1.0.tgz_1464674872374_0.29905563429929316"},"directories":{}},"1.9.0-dev.20160601-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160601-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"166f399d176486a1247c54dcd6ad4a18e33c18f3","_id":"typescript@1.9.0-dev.20160601-1.0","_shasum":"41fd19ecd08ad31bc298473eea82b60dbd1f110c","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"41fd19ecd08ad31bc298473eea82b60dbd1f110c","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160601-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160601-1.0.tgz_1464761284684_0.6037666590418667"},"directories":{}},"1.9.0-dev.20160602-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160602-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"166f399d176486a1247c54dcd6ad4a18e33c18f3","_id":"typescript@1.9.0-dev.20160602-1.0","_shasum":"780f2a90b37e6ffa1394a714560c5e760d6bbc95","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"780f2a90b37e6ffa1394a714560c5e760d6bbc95","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160602-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160602-1.0.tgz_1464847696126_0.6565910340286791"},"directories":{}},"1.9.0-dev.20160603-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160603-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"3853555b49ccea3a5bba1163d983571ef25cf694","_id":"typescript@1.9.0-dev.20160603-1.0","_shasum":"4612e231e5802807c3af0338a2a4c7a1fe5f11e1","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4612e231e5802807c3af0338a2a4c7a1fe5f11e1","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160603-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160603-1.0.tgz_1464934094365_0.31391331111080945"},"directories":{}},"1.9.0-dev.20160604-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160604-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6dcd5877a072193830c18687228e742e62e1fd24","_id":"typescript@1.9.0-dev.20160604-1.0","_shasum":"900bb262c8e657854c2f52d7235610a95fd01e3a","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"900bb262c8e657854c2f52d7235610a95fd01e3a","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160604-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160604-1.0.tgz_1465020484312_0.9461174772586673"},"directories":{}},"1.9.0-dev.20160605-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160605-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6dcd5877a072193830c18687228e742e62e1fd24","_id":"typescript@1.9.0-dev.20160605-1.0","_shasum":"1b71a635c58f4daed601f153e6832c53b611a8b1","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"1b71a635c58f4daed601f153e6832c53b611a8b1","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160605-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160605-1.0.tgz_1465106892507_0.898524829884991"},"directories":{}},"1.9.0-dev.20160606-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160606-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6dcd5877a072193830c18687228e742e62e1fd24","_id":"typescript@1.9.0-dev.20160606-1.0","_shasum":"90e12c913882508c0438b1dfe862a4e96cd06b9a","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"90e12c913882508c0438b1dfe862a4e96cd06b9a","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160606-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160606-1.0.tgz_1465193290946_0.7177782678045332"},"directories":{}},"1.9.0-dev.20160607-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160607-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"52d8a78419b6ff27499274ade4a36ff3cfd058da","_id":"typescript@1.9.0-dev.20160607-1.0","_shasum":"df9c78d5706abb1dc51dd00a8012f7ebf3cfee23","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"df9c78d5706abb1dc51dd00a8012f7ebf3cfee23","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160607-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160607-1.0.tgz_1465279702182_0.8184833158738911"},"directories":{}},"1.9.0-dev.20160608-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160608-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"cdf4cded154b942d65bd3d645ee8d67adae4ecb6","_id":"typescript@1.9.0-dev.20160608-1.0","_shasum":"8771e06f5bd59107c731ba0ad9b4a6976209bbf2","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8771e06f5bd59107c731ba0ad9b4a6976209bbf2","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160608-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160608-1.0.tgz_1465366110815_0.4723525489680469"},"directories":{}},"1.9.0-dev.20160609-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160609-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"9e122909d4343e564617414dc7151213f1bf73d2","_id":"typescript@1.9.0-dev.20160609-1.0","_shasum":"8784329a17d72407881d39fc7d49ea1522e39c38","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8784329a17d72407881d39fc7d49ea1522e39c38","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160609-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160609-1.0.tgz_1465452477903_0.5440968133043498"},"directories":{}},"1.9.0-dev.20160610-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160610-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2b46656b4a0ff5528c6d6316823c183897ff2277","_id":"typescript@1.9.0-dev.20160610-1.0","_shasum":"768216dcc2528b9445b5cecaeb599b22ca8a3072","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"768216dcc2528b9445b5cecaeb599b22ca8a3072","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160610-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160610-1.0.tgz_1465538901967_0.9905812302604318"},"directories":{}},"1.9.0-dev.20160611-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160611-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"81d1ccfe87d8c872deaebe490d29ba6bb1a2fe88","_id":"typescript@1.9.0-dev.20160611-1.0","_shasum":"00e9fbae5e484049059b26f2042c13f0e324eed5","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"00e9fbae5e484049059b26f2042c13f0e324eed5","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160611-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160611-1.0.tgz_1465625305012_0.1377795049920678"},"directories":{}},"1.9.0-dev.20160612-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160612-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"81d1ccfe87d8c872deaebe490d29ba6bb1a2fe88","_id":"typescript@1.9.0-dev.20160612-1.0","_shasum":"2ae212f98e60c74bbfca27e48cd2caf50cfcba2c","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"2ae212f98e60c74bbfca27e48cd2caf50cfcba2c","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160612-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160612-1.0.tgz_1465711707201_0.5763158404733986"},"directories":{}},"1.9.0-dev.20160613-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160613-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"81d1ccfe87d8c872deaebe490d29ba6bb1a2fe88","_id":"typescript@1.9.0-dev.20160613-1.0","_shasum":"49daca27d5aaf2d2606f2d23ae95fb8bb38378ff","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"49daca27d5aaf2d2606f2d23ae95fb8bb38378ff","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160613-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160613-1.0.tgz_1465798065856_0.7256635501980782"},"directories":{}},"1.9.0-dev.20160614-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160614-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"f9923efd0981cbff405c03500a397244f0d3f8b8","_id":"typescript@1.9.0-dev.20160614-1.0","_shasum":"18c07473113ba76824928f8e5d3d0654c880c247","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"18c07473113ba76824928f8e5d3d0654c880c247","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160614-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160614-1.0.tgz_1465884478592_0.47812855150550604"},"directories":{}},"1.9.0-dev.20160615-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160615-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"38c89af6b2d8ec050607e9cf370d35d0e42ea50d","_id":"typescript@1.9.0-dev.20160615-1.0","_shasum":"23374ae3b9b58e87467d1493631a49b31a1a48ae","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"23374ae3b9b58e87467d1493631a49b31a1a48ae","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160615-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160615-1.0.tgz_1465970888466_0.45856522070243955"},"directories":{}},"1.9.0-dev.20160616-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160616-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"95ae809faafb7311b33b7ece737bb1474e6e479d","_id":"typescript@1.9.0-dev.20160616-1.0","_shasum":"4ebf5ba11e4035869cb9894eabeba4d8982880ca","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4ebf5ba11e4035869cb9894eabeba4d8982880ca","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160616-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160616-1.0.tgz_1466057280886_0.7519359402358532"},"directories":{}},"1.9.0-dev.20160617-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160617-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"0e6f8eb2bca776acdb11a6cbf45b37b2d195650a","_id":"typescript@1.9.0-dev.20160617-1.0","_shasum":"878301d8b4e346d194129f793a9dd1eff18cfcef","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"878301d8b4e346d194129f793a9dd1eff18cfcef","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160617-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160617-1.0.tgz_1466143718910_0.10595914931036532"},"directories":{}},"1.9.0-dev.20160618-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160618-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"3fe546b9eaac9afff44251d2434c21a47c41cd99","_id":"typescript@1.9.0-dev.20160618-1.0","_shasum":"c24b81721693f0673def37650f9ffaf1903631fe","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"c24b81721693f0673def37650f9ffaf1903631fe","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160618-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160618-1.0.tgz_1466230081176_0.1526259151287377"},"directories":{}},"1.9.0-dev.20160619-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160619-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ba78d1e35c02f66bcaaec07c56e7b6c754846823","_id":"typescript@1.9.0-dev.20160619-1.0","_shasum":"d9beb66e8eb7ba4808500ca7bc77e1daddd648bf","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d9beb66e8eb7ba4808500ca7bc77e1daddd648bf","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160619-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160619-1.0.tgz_1466316494852_0.11166878417134285"},"directories":{}},"1.9.0-dev.20160620-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160620-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ba78d1e35c02f66bcaaec07c56e7b6c754846823","_id":"typescript@1.9.0-dev.20160620-1.0","_shasum":"59e112d2a23399114f820a5e5bd3e1a4837f0feb","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"59e112d2a23399114f820a5e5bd3e1a4837f0feb","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160620-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160620-1.0.tgz_1466402890838_0.15002755378372967"},"directories":{}},"1.9.0-dev.20160622-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160622-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"12bfb7e98751d7f8b2bb12aa51273aa8a4fbd59e","_id":"typescript@1.9.0-dev.20160622-1.0","_shasum":"d3a2e3100cd43cc4b8c5fd618031c146aca35523","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d3a2e3100cd43cc4b8c5fd618031c146aca35523","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160622-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160622-1.0.tgz_1466575666395_0.5454677157104015"},"directories":{}},"1.9.0-dev.20160623-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160623-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"9134ed3b7dbe5181a0398c2aea40d30397f2b39c","_id":"typescript@1.9.0-dev.20160623-1.0","_shasum":"86448d296743fdd7e641c93467cdb56ee78ad42a","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"86448d296743fdd7e641c93467cdb56ee78ad42a","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160623-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160623-1.0.tgz_1466662076622_0.9902041908353567"},"directories":{}},"1.9.0-dev.20160624-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160624-1.0","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"69e2f0e4590965ab3f971fee25d6752f726c01ff","_id":"typescript@1.9.0-dev.20160624-1.0","_shasum":"5d3f5fcf690f44b9d652e00ee9480db1e4e2ecd8","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5d3f5fcf690f44b9d652e00ee9480db1e4e2ecd8","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160624-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160624-1.0.tgz_1466748508170_0.39683223562315106"},"directories":{}},"1.9.0-dev.20160625-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160625-1.0","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"be2ca35b004f2079464fdca454c08a5019020260","_id":"typescript@1.9.0-dev.20160625-1.0","_shasum":"5fd9d96ea24d0fdd1dffe6f1e275970392d13be5","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5fd9d96ea24d0fdd1dffe6f1e275970392d13be5","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160625-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160625-1.0.tgz_1466834910717_0.11769267776980996"},"directories":{}},"1.9.0-dev.20160626-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160626-1.0","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"be2ca35b004f2079464fdca454c08a5019020260","_id":"typescript@1.9.0-dev.20160626-1.0","_shasum":"9947ac4fd4017ee34454e8d2b8c281c7f55e44d7","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"9947ac4fd4017ee34454e8d2b8c281c7f55e44d7","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160626-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160626-1.0.tgz_1466921317329_0.36675865505822003"},"directories":{}},"1.9.0-dev.20160627-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160627-1.0","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"be2ca35b004f2079464fdca454c08a5019020260","_id":"typescript@1.9.0-dev.20160627-1.0","_shasum":"a868521c774b7f76ad468cfcd5d899ede9b72859","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a868521c774b7f76ad468cfcd5d899ede9b72859","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160627-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160627-1.0.tgz_1467007710798_0.6816966694314033"},"directories":{}},"2.0.0-dev.20160628":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.0.0-dev.20160628","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6be7d9caa60c261f1be6a61be9e6851e835b9d61","_id":"typescript@2.0.0-dev.20160628","_shasum":"d906f5c0cee84578913793ac03ba91c655e380d7","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d906f5c0cee84578913793ac03ba91c655e380d7","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.0.0-dev.20160628.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.0.0-dev.20160628.tgz_1467094120337_0.7582901283167303"},"directories":{}},"2.0.0-dev.20160629":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.0.0-dev.20160629","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"47bee47c7553956988c7188271733f91bc4f7541","_id":"typescript@2.0.0-dev.20160629","_shasum":"98d431ed98a401735eae0e998d726c11dcfa3450","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"98d431ed98a401735eae0e998d726c11dcfa3450","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.0.0-dev.20160629.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.0.0-dev.20160629.tgz_1467180525137_0.15340073965489864"},"directories":{}},"2.0.0-dev.20160630":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.0.0-dev.20160630","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"7b77f6b3fd88f012a2b1f93cd49505ac5cef1099","_id":"typescript@2.0.0-dev.20160630","_shasum":"4b9f1ca02eca2f6e4380b5100059cb216b5fe9b0","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4b9f1ca02eca2f6e4380b5100059cb216b5fe9b0","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.0.0-dev.20160630.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.0.0-dev.20160630.tgz_1467266918023_0.9832048646640033"},"directories":{}},"2.0.0-dev.20160701":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.0.0-dev.20160701","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"613e2d33b6bebc96ab9fc3a111d61b2a30015490","_id":"typescript@2.0.0-dev.20160701","_shasum":"d42f8b45ab2e569bec8e656c29fa92efaf202d7d","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d42f8b45ab2e569bec8e656c29fa92efaf202d7d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.0.0-dev.20160701.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.0.0-dev.20160701.tgz_1467353346141_0.8765618782490492"},"directories":{}},"2.0.0-dev.20160702":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.0.0-dev.20160702","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"1d03be0f90827b59ce7dbd20a45d125a0a387527","_id":"typescript@2.0.0-dev.20160702","_shasum":"83f1dd272907306dba804a12e769fbde9c749529","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"83f1dd272907306dba804a12e769fbde9c749529","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.0.0-dev.20160702.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.0.0-dev.20160702.tgz_1467439724167_0.4842175703961402"},"directories":{}},"2.0.0-dev.20160703":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.0.0-dev.20160703","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"19c141aefed7920291a11398daca4d076f862e67","_id":"typescript@2.0.0-dev.20160703","_shasum":"79cd90d5f63f4a6ee83524c3fc1f057660e170d8","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"79cd90d5f63f4a6ee83524c3fc1f057660e170d8","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.0.0-dev.20160703.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.0.0-dev.20160703.tgz_1467526112554_0.3352405352052301"},"directories":{}},"2.0.0-dev.20160704":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.0.0-dev.20160704","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c2730ce659733b89b8599440837a3046ca734a75","_id":"typescript@2.0.0-dev.20160704","_shasum":"4d588d534d530d7faecca2d5e696f7b5f4d61785","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4d588d534d530d7faecca2d5e696f7b5f4d61785","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.0.0-dev.20160704.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.0.0-dev.20160704.tgz_1467612514952_0.47343565733172"},"directories":{}},"2.0.0-dev.20160705":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.0.0-dev.20160705","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c2730ce659733b89b8599440837a3046ca734a75","_id":"typescript@2.0.0-dev.20160705","_shasum":"43d9efcdee4fd34a4c49a360fa5a430125190f66","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"43d9efcdee4fd34a4c49a360fa5a430125190f66","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.0.0-dev.20160705.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.0.0-dev.20160705.tgz_1467698926437_0.838360367808491"},"directories":{}},"2.0.0-dev.20160706":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.0.0-dev.20160706","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"29985f33b7cabf9f549721c368ba2118d147779f","_id":"typescript@2.0.0-dev.20160706","_shasum":"aee3aaed4895c52beede6b34c08d8c91a0a0e0d0","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"aee3aaed4895c52beede6b34c08d8c91a0a0e0d0","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.0.0-dev.20160706.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.0.0-dev.20160706.tgz_1467785381557_0.09087051870301366"},"directories":{}},"2.0.0-dev.20160707":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.0.0-dev.20160707","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a03941237334f6757c932254d58f1833fa1b004a","_id":"typescript@2.0.0-dev.20160707","_shasum":"e2ad33dfcb1c6502d5a151154a51cf9f85e09f1b","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e2ad33dfcb1c6502d5a151154a51cf9f85e09f1b","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.0.0-dev.20160707.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.0.0-dev.20160707.tgz_1467871761621_0.6881850478239357"},"directories":{}},"2.0.0-dev.20160711":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.0.0-dev.20160711","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"37eac5fb7f9d2484cfef3ae344d91aa622b9aa86","_id":"typescript@2.0.0-dev.20160711","_shasum":"509628fb1b27a9cc2412f0d03a0554bc19f7b5fb","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"509628fb1b27a9cc2412f0d03a0554bc19f7b5fb","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.0.0-dev.20160711.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.0.0-dev.20160711.tgz_1468248247690_0.022030749125406146"},"directories":{}},"2.0.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.0.0","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"87e95069fc6a5a46804f7328a8ef0d180e17734a","_id":"typescript@2.0.0","_shasum":"14795f9c39e06022597a2a09eb733adabef9b08c","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"14795f9c39e06022597a2a09eb733adabef9b08c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.0.0.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.0.0.tgz_1468253608465_0.3713174283038825"},"directories":{}},"2.1.0-dev.20160712":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160712","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"48ab0ce07fa72bb5bd66a571026f8af1839027c3","_id":"typescript@2.1.0-dev.20160712","_shasum":"d2e62dd5ddd39f20fc532516a46f97bd1fce3ee7","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d2e62dd5ddd39f20fc532516a46f97bd1fce3ee7","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160712.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160712.tgz_1468303743673_0.07090933294966817"},"directories":{}},"2.1.0-dev.20160713":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160713","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"f9d29370b659ad33418aed029f120c43c0f36e5c","_id":"typescript@2.1.0-dev.20160713","_shasum":"963a4687ad986fabfa5e5a8888e08849983376aa","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"963a4687ad986fabfa5e5a8888e08849983376aa","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160713.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160713.tgz_1468390142147_0.09949590777978301"},"directories":{}},"2.1.0-dev.20160714":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160714","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"cc4b331460277105ee925d1ea9ae9ba6bdc98e98","_id":"typescript@2.1.0-dev.20160714","_shasum":"df30a21d765255654a173336b64c9b2cbc9bbf0b","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"df30a21d765255654a173336b64c9b2cbc9bbf0b","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160714.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160714.tgz_1468476533620_0.45549040636979043"},"directories":{}},"2.1.0-dev.20160715":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160715","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"f16f27661fab070ab0aad2a771459f2cfb4f301c","_id":"typescript@2.1.0-dev.20160715","_shasum":"069f75c0c31f2d9c03f98355f616742dd869d306","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"069f75c0c31f2d9c03f98355f616742dd869d306","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160715.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160715.tgz_1468562934312_0.10801825835369527"},"directories":{}},"2.1.0-dev.20160716":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160716","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"87f75ff8233e655fb6eb66953b1eb871a4269a98","_id":"typescript@2.1.0-dev.20160716","_shasum":"2c8a4c4a6342cfca9959f5c033872fb37117fe00","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"2c8a4c4a6342cfca9959f5c033872fb37117fe00","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160716.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160716.tgz_1468649332986_0.016943665221333504"},"directories":{}},"2.1.0-dev.20160717":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160717","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"87f75ff8233e655fb6eb66953b1eb871a4269a98","_id":"typescript@2.1.0-dev.20160717","_shasum":"473c9c7b05ed57f6d811371098e14cc934c36928","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"473c9c7b05ed57f6d811371098e14cc934c36928","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160717.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160717.tgz_1468735742605_0.8430407578125596"},"directories":{}},"2.1.0-dev.20160718":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160718","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"87f75ff8233e655fb6eb66953b1eb871a4269a98","_id":"typescript@2.1.0-dev.20160718","_shasum":"bc9b20eb1b962cd59ced771b5acbc7ee919b5fbb","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"bc9b20eb1b962cd59ced771b5acbc7ee919b5fbb","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160718.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160718.tgz_1468822160717_0.8979758773930371"},"directories":{}},"2.1.0-dev.20160719":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160719","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e52e1659dbc030bff127e7e2e5041d014cf35314","_id":"typescript@2.1.0-dev.20160719","_shasum":"106abb8d8e4fddab0b295434f6e0d71aa589e303","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"106abb8d8e4fddab0b295434f6e0d71aa589e303","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160719.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160719.tgz_1468908544598_0.2308966713026166"},"directories":{}},"2.1.0-dev.20160720":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160720","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"80db0f2f166d0a3547319fce789c31604e8fc83b","_id":"typescript@2.1.0-dev.20160720","_shasum":"dc635cc1cedbcd9d59b13f5c1717aa297022f6d1","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"dc635cc1cedbcd9d59b13f5c1717aa297022f6d1","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160720.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160720.tgz_1468994942188_0.40555884619243443"},"directories":{}},"2.1.0-dev.20160721":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160721","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a2f45e95993d07cb8475301da7bae24e631cdb8c","_id":"typescript@2.1.0-dev.20160721","_shasum":"1a110738b2ee15e0f15b330b385a7e096a6e4541","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"1a110738b2ee15e0f15b330b385a7e096a6e4541","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160721.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160721.tgz_1469081377386_0.6835812421049923"},"directories":{}},"2.1.0-dev.20160722":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160722","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"f24341f719866af6b31f96e6eebafba1852ac80a","_id":"typescript@2.1.0-dev.20160722","_shasum":"1e0b51b06d0f6866b436a1a47f4a634c28475dcc","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"1e0b51b06d0f6866b436a1a47f4a634c28475dcc","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160722.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160722.tgz_1469167729180_0.8946240255609155"},"directories":{}},"2.1.0-dev.20160723":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160723","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a0406c777fa67aefb947d0b94878fa25b28e0b4f","_id":"typescript@2.1.0-dev.20160723","_shasum":"ee60546c072bfe0138775086a2f72c21b13eecba","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ee60546c072bfe0138775086a2f72c21b13eecba","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160723.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160723.tgz_1469254122389_0.7930373614653945"},"directories":{}},"2.1.0-dev.20160724":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160724","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6a6f5db814ddb9fc8e5d7eba9b2858d8ca3474de","_id":"typescript@2.1.0-dev.20160724","_shasum":"5c3a7e1f50e3de0959ca83c3fb6a9448dfe0e3d0","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5c3a7e1f50e3de0959ca83c3fb6a9448dfe0e3d0","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160724.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160724.tgz_1469340519469_0.15275051956996322"},"directories":{}},"2.1.0-dev.20160725":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160725","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6a6f5db814ddb9fc8e5d7eba9b2858d8ca3474de","_id":"typescript@2.1.0-dev.20160725","_shasum":"cd0f7b85cd5c2091593945ce48692b014bbee3dd","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"cd0f7b85cd5c2091593945ce48692b014bbee3dd","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160725.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160725.tgz_1469426907149_0.20951781678013504"},"directories":{}},"2.1.0-dev.20160726":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160726","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"~1.1.0","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"3ad83cb8894d609200c82ac4e6af846131eff6d0","_id":"typescript@2.1.0-dev.20160726","_shasum":"cba12d2b89f2575c645f7b17aa02c9f5099e1b7c","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"cba12d2b89f2575c645f7b17aa02c9f5099e1b7c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160726.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160726.tgz_1469513322941_0.8623922280967236"},"directories":{}},"2.1.0-dev.20160727":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160727","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"~1.1.0","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a32234c56272becb255701ea61965ce8691e993b","_id":"typescript@2.1.0-dev.20160727","_shasum":"423c1381f5472fa0b394f60c18ecdf825791451e","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"423c1381f5472fa0b394f60c18ecdf825791451e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160727.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160727.tgz_1469599729005_0.1671870572026819"},"directories":{}},"2.1.0-dev.20160728":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160728","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"07837439944c42f1fb021a98fe9ef8d78f0df3bd","_id":"typescript@2.1.0-dev.20160728","_shasum":"83c8cf32315fdeccb592d0459203ac84a2bc78a5","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"83c8cf32315fdeccb592d0459203ac84a2bc78a5","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160728.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160728.tgz_1469686116960_0.9044479886069894"},"directories":{}},"2.1.0-dev.20160729":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160729","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"013744bf858809a1b9ccbf58719ec477b2417bb5","_id":"typescript@2.1.0-dev.20160729","_shasum":"b97de8e63e0dbd24120844e349143fe61f28b460","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"b97de8e63e0dbd24120844e349143fe61f28b460","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160729.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160729.tgz_1469772541792_0.7931645456701517"},"directories":{}},"2.1.0-dev.20160730":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160730","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"394dbbf280dfcd6d8d11c625494a2b1c1b5438de","_id":"typescript@2.1.0-dev.20160730","_shasum":"edcbe327023a813c29cca4a23f02573a4b115134","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"edcbe327023a813c29cca4a23f02573a4b115134","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160730.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160730.tgz_1469858939491_0.6722474263515323"},"directories":{}},"2.1.0-dev.20160731":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160731","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"1d979ccc8cbdff99d92a8c3a4b4b2d73b311b340","_id":"typescript@2.1.0-dev.20160731","_shasum":"26a8d20435dedf7982dc584621c4d86788fc9ce3","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"26a8d20435dedf7982dc584621c4d86788fc9ce3","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160731.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160731.tgz_1469945315707_0.6564060875680298"},"directories":{}},"2.1.0-dev.20160801":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160801","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"030fbdc0d514633690fb3e26284d85fe865fb784","_id":"typescript@2.1.0-dev.20160801","_shasum":"10bb9cac35e8bead9ca67eca795f6672b878b7dc","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"10bb9cac35e8bead9ca67eca795f6672b878b7dc","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160801.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160801.tgz_1470031714838_0.4720172912348062"},"directories":{}},"2.1.0-dev.20160802":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160802","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"f06413b8d4a86b9a3a4d0b9b42e22d096ecbaf7e","_id":"typescript@2.1.0-dev.20160802","_shasum":"389c4a7b187a2347ce32a54541df008117dee2b7","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"389c4a7b187a2347ce32a54541df008117dee2b7","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160802.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160802.tgz_1470118150726_0.2683816652279347"},"directories":{}},"2.1.0-dev.20160803":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160803","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"0eeb9cbd0c9d89f0bc5d72ea7ad9248f0302cd37","_id":"typescript@2.1.0-dev.20160803","_shasum":"3f9147ba7b028ab13518c073a0b96efb8368ecb7","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"3f9147ba7b028ab13518c073a0b96efb8368ecb7","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160803.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160803.tgz_1470204536419_0.38205055915750563"},"directories":{}},"2.1.0-dev.20160804":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160804","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"14f0aa0ace2d9748350cf80bc0d8fa6cab7c1aaf","_id":"typescript@2.1.0-dev.20160804","_shasum":"0c00cbf26345931693075261ee5c9e07fa3fcf17","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0c00cbf26345931693075261ee5c9e07fa3fcf17","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160804.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160804.tgz_1470290939372_0.0748732858337462"},"directories":{}},"2.1.0-dev.20160805":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160805","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"18fb33d36fbac6d296b4e7d9a94beb29b57de607","_id":"typescript@2.1.0-dev.20160805","_shasum":"e294e8f14fe00244b91225f85c61f5b48ee0240a","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e294e8f14fe00244b91225f85c61f5b48ee0240a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160805.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160805.tgz_1470377331334_0.1990865666884929"},"directories":{}},"2.1.0-dev.20160806":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160806","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"269b8285387f5a7fdf1a2d2aafa40e96a425576d","_id":"typescript@2.1.0-dev.20160806","_shasum":"75188fcd65240c7300de4826dbe0d6c1256cb591","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"75188fcd65240c7300de4826dbe0d6c1256cb591","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160806.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160806.tgz_1470463738505_0.40200612926855683"},"directories":{}},"2.1.0-dev.20160807":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160807","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"269b8285387f5a7fdf1a2d2aafa40e96a425576d","_id":"typescript@2.1.0-dev.20160807","_shasum":"dc3b2f4b3e7b1fa89846be8610d87317907f7e81","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"dc3b2f4b3e7b1fa89846be8610d87317907f7e81","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160807.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160807.tgz_1470550134277_0.0006399520207196474"},"directories":{}},"2.1.0-dev.20160808":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160808","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"269b8285387f5a7fdf1a2d2aafa40e96a425576d","_id":"typescript@2.1.0-dev.20160808","_shasum":"8c78f9b751ff15504a21238604b8257655392873","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8c78f9b751ff15504a21238604b8257655392873","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160808.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160808.tgz_1470636525586_0.7663002426270396"},"directories":{}},"2.1.0-dev.20160809":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160809","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"3f1ec7ad4bda8fb546beece999f5f20ef6fe9f24","_id":"typescript@2.1.0-dev.20160809","_shasum":"78978a34e6e67a16ddb77a307e2f36361e976507","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"78978a34e6e67a16ddb77a307e2f36361e976507","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160809.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160809.tgz_1470722946802_0.299858161713928"},"directories":{}},"2.1.0-dev.20160810":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160810","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"557fc38446ff9e5fcfc3104dbea64e10bdf104c8","_id":"typescript@2.1.0-dev.20160810","_shasum":"d87bf00a31c7c9e9288f175b03021ab2c4f575f7","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d87bf00a31c7c9e9288f175b03021ab2c4f575f7","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160810.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160810.tgz_1470809357022_0.4564399600494653"},"directories":{}},"2.1.0-dev.20160811":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160811","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e16326de8b910926f95bcf9f16aed0db5265d1fb","_id":"typescript@2.1.0-dev.20160811","_shasum":"d21a322f73876f840ffdece9c6a9d116ebae1c20","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d21a322f73876f840ffdece9c6a9d116ebae1c20","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160811.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160811.tgz_1470895759068_0.3161159004084766"},"directories":{}},"2.1.0-dev.20160812":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160812","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"9ac13abfd196f662ce606d8d99cb8791c2ad61fe","_id":"typescript@2.1.0-dev.20160812","_shasum":"89811b1bd7bcae11e20a6afcf9cc27e964390974","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"89811b1bd7bcae11e20a6afcf9cc27e964390974","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160812.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160812.tgz_1470982209610_0.7519830877427012"},"directories":{}},"2.1.0-dev.20160813":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160813","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"5bdde3b284826cb07a335012ce697327b7627fac","_id":"typescript@2.1.0-dev.20160813","_shasum":"f6077bd42def3836f9f8b3ec9421c036a437fd6c","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f6077bd42def3836f9f8b3ec9421c036a437fd6c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160813.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160813.tgz_1471068472603_0.24529314250685275"},"directories":{}},"2.1.0-dev.20160814":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160814","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"10d1e02916578e4ece7bd24352f144be1eb72305","_id":"typescript@2.1.0-dev.20160814","_shasum":"530aa056ab0965da456cb09e00aa606273e8ee7d","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"530aa056ab0965da456cb09e00aa606273e8ee7d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160814.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160814.tgz_1471154868995_0.23773130122572184"},"directories":{}},"2.1.0-dev.20160815":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160815","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"78cea2adb5a344aadf7f7eed2a0809131743b005","_id":"typescript@2.1.0-dev.20160815","_shasum":"49c579b3e436a24d4c69b109f59c2d8472c09bea","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"49c579b3e436a24d4c69b109f59c2d8472c09bea","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160815.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160815.tgz_1471241270722_0.4718144480139017"},"directories":{}},"2.1.0-dev.20160816":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160816","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"80c04f8e97aa7ab6c0e1fb604bf1551e7057183c","_id":"typescript@2.1.0-dev.20160816","_shasum":"5018dff33de398656867bd6a6a9d41c8ae71d34b","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5018dff33de398656867bd6a6a9d41c8ae71d34b","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160816.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160816.tgz_1471327639000_0.2738156788982451"},"directories":{}},"2.1.0-dev.20160817":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160817","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"11c5c4ee8e27baa7766ebe2e3090990a2e72c922","_id":"typescript@2.1.0-dev.20160817","_shasum":"968b03a6d87cb64bf8521f68687e4e1fd3264225","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"968b03a6d87cb64bf8521f68687e4e1fd3264225","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160817.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160817.tgz_1471414043504_0.42726909439079463"},"directories":{}},"2.1.0-dev.20160818":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160818","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"da8fc5d5a90dc18e83a137ba7e04d38854fc1c7d","_id":"typescript@2.1.0-dev.20160818","_shasum":"e2011c4f2fab3ba53d8609fdb92c39f67068c4d0","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e2011c4f2fab3ba53d8609fdb92c39f67068c4d0","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160818.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160818.tgz_1471500417712_0.8612639494240284"},"directories":{}},"2.1.0-dev.20160819":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160819","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a621c09606ceeb3010a58cd0f48184a88370e613","_id":"typescript@2.1.0-dev.20160819","_shasum":"7e9f142502da3b5f784b686391830e74db074a35","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"7e9f142502da3b5f784b686391830e74db074a35","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160819.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160819.tgz_1471586815129_0.48295718687586486"},"directories":{}},"2.1.0-dev.20160820":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160820","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d8ab09819560991807c489f5ac1a391be86d3de6","_id":"typescript@2.1.0-dev.20160820","_shasum":"507567984e0747178d10c6b349adc7fc9564cfaa","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"507567984e0747178d10c6b349adc7fc9564cfaa","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160820.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160820.tgz_1471673215161_0.07676441548392177"},"directories":{}},"2.1.0-dev.20160821":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160821","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"66f6f9ba05e1a3ebdeb0a66e0603f40ab3e9b8a3","_id":"typescript@2.1.0-dev.20160821","_shasum":"8b040fd08390f19c29c8a463883f67b43133385f","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8b040fd08390f19c29c8a463883f67b43133385f","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160821.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160821.tgz_1471759613787_0.36157523607835174"},"directories":{}},"2.1.0-dev.20160822":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160822","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"66f6f9ba05e1a3ebdeb0a66e0603f40ab3e9b8a3","_id":"typescript@2.1.0-dev.20160822","_shasum":"08eaac7f751127771fe024c3bf3c9c47fd6b3ad9","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"08eaac7f751127771fe024c3bf3c9c47fd6b3ad9","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160822.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160822.tgz_1471846003035_0.5255277927499264"},"directories":{}},"2.1.0-dev.20160823":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160823","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"93de502656a7a0cdf30737513d29bcb396c79662","_id":"typescript@2.1.0-dev.20160823","_shasum":"e18198b0fad51e32b38ba4a35655185d6cf97e2a","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e18198b0fad51e32b38ba4a35655185d6cf97e2a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160823.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160823.tgz_1471932415212_0.7927686260081828"},"directories":{}},"2.1.0-dev.20160824":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160824","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ddb5a00410d695d35b55c5482876a16f7c696c4b","_id":"typescript@2.1.0-dev.20160824","_shasum":"6601e4b55a72ee35052c6a73943e6b2e9ca77791","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"6601e4b55a72ee35052c6a73943e6b2e9ca77791","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160824.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160824.tgz_1472018824029_0.1678892495110631"},"directories":{}},"2.1.0-dev.20160825":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160825","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ddb5a00410d695d35b55c5482876a16f7c696c4b","_id":"typescript@2.1.0-dev.20160825","_shasum":"e9eefc6e9c5d054d5ee30356a378bba80bc648a8","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e9eefc6e9c5d054d5ee30356a378bba80bc648a8","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160825.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160825.tgz_1472105221420_0.7407153714448214"},"directories":{}},"2.1.0-dev.20160826":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160826","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c72f5e28e819eac8ebfda080a0aa681d445c58a8","_id":"typescript@2.1.0-dev.20160826","_shasum":"7fc749693fa9689b4918276af2fc82e190519679","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"7fc749693fa9689b4918276af2fc82e190519679","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160826.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160826.tgz_1472191630823_0.3509740678127855"},"directories":{}},"2.1.0-dev.20160827":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160827","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"598ca48c94535156c842ddc13fddd24aac1130fe","_id":"typescript@2.1.0-dev.20160827","_shasum":"d690df775c4288ba79a0a2a16a6ae6f7df79b590","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d690df775c4288ba79a0a2a16a6ae6f7df79b590","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160827.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160827.tgz_1472278022360_0.19597334624268115"},"directories":{}},"2.1.0-dev.20160828":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160828","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"598ca48c94535156c842ddc13fddd24aac1130fe","_id":"typescript@2.1.0-dev.20160828","_shasum":"60036997b6f30b0681cd004d5f635e2a1432cf32","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"60036997b6f30b0681cd004d5f635e2a1432cf32","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160828.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160828.tgz_1472364419748_0.08881452330388129"},"directories":{}},"2.1.0-dev.20160829":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160829","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"0485bb6b56b38749b83a23626243627a42472d50","_id":"typescript@2.1.0-dev.20160829","_shasum":"1cb22b81ba618c19c284c26ad87c16cf4edebc88","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"1cb22b81ba618c19c284c26ad87c16cf4edebc88","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160829.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160829.tgz_1472450834836_0.5940582328476012"},"directories":{}},"2.1.0-dev.20160830":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160830","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"0485bb6b56b38749b83a23626243627a42472d50","_id":"typescript@2.1.0-dev.20160830","_shasum":"4ec8efd6d1c73c0a7da6e6364c71d7df766b26b9","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4ec8efd6d1c73c0a7da6e6364c71d7df766b26b9","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160830.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160830.tgz_1472537194354_0.999076668638736"},"directories":{}},"2.0.2":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.0.2","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d6dac6a6cb83164db329482357dbd2ed3a6f459b","_id":"typescript@2.0.2","_shasum":"a63f848074498a4dfa7f293afda0835d501d9540","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"a63f848074498a4dfa7f293afda0835d501d9540","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.0.2.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.0.2.tgz_1472573195120_0.8466535992920399"},"directories":{}},"2.1.0-dev.20160831":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160831","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"0b9573118454ab2420abc168405be1a78b482b57","_id":"typescript@2.1.0-dev.20160831","_shasum":"6e9098beae752a5cc388a3319df32779c456e2d4","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"6e9098beae752a5cc388a3319df32779c456e2d4","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160831.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160831.tgz_1472623615739_0.517490531783551"},"directories":{}},"2.1.0-dev.20160901":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160901","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"707d61d7fe953b04b3ad117294a33135573ced3a","_id":"typescript@2.1.0-dev.20160901","_shasum":"e7d6ee18f76aef1600a4e620eb20fca748b1cc61","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e7d6ee18f76aef1600a4e620eb20fca748b1cc61","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160901.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160901.tgz_1472710009861_0.3333348776213825"},"directories":{}},"2.1.0-dev.20160902":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160902","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"8038eb943e6509a5da3377853ca04986bededbb1","_id":"typescript@2.1.0-dev.20160902","_shasum":"ca19d07675b4de78a3f41d3a919a5d2c9c2129bf","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ca19d07675b4de78a3f41d3a919a5d2c9c2129bf","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160902.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160902.tgz_1472796426229_0.9049535642843693"},"directories":{}},"2.1.0-dev.20160903":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160903","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"32b6746afe193bfa0cd07798768134f1b8963fe1","_id":"typescript@2.1.0-dev.20160903","_shasum":"fd16d831e3b0cba8f426af44dacc4ca52a245b1d","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"fd16d831e3b0cba8f426af44dacc4ca52a245b1d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160903.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160903.tgz_1472883057481_0.34614215698093176"},"directories":{}},"2.1.0-dev.20160904":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160904","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"32b6746afe193bfa0cd07798768134f1b8963fe1","_id":"typescript@2.1.0-dev.20160904","_shasum":"4ef619c7ca0bf0098626548e2b24762f4963eb59","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4ef619c7ca0bf0098626548e2b24762f4963eb59","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160904.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160904.tgz_1472969422811_0.8531629010103643"},"directories":{}},"2.1.0-dev.20160905":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160905","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2379000f8a9b2bbd1fface413387927ea2b31876","_id":"typescript@2.1.0-dev.20160905","_shasum":"ac6f7c84d0049b36b980342bc1570e88375d1ded","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ac6f7c84d0049b36b980342bc1570e88375d1ded","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160905.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160905.tgz_1473055825707_0.8476049695163965"},"directories":{}},"2.1.0-dev.20160906":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160906","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2379000f8a9b2bbd1fface413387927ea2b31876","_id":"typescript@2.1.0-dev.20160906","_shasum":"f2c39ba7df449ddd233bb16ad44e1c54e27550ec","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f2c39ba7df449ddd233bb16ad44e1c54e27550ec","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160906.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160906.tgz_1473142303407_0.41269476944580674"},"directories":{}},"2.1.0-dev.20160907":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160907","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"46856462816b54e32a9d962e218d6e3f8ff42348","_id":"typescript@2.1.0-dev.20160907","_shasum":"a16034e0e161e0efda465790f977174935d9ae77","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a16034e0e161e0efda465790f977174935d9ae77","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160907.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160907.tgz_1473228446083_0.6078537025023252"},"directories":{}},"2.1.0-dev.20160908":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160908","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"2.1.0-dev.20160906"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"874846a5348516f1a0decbe3e8d3e0d5222b6589","_id":"typescript@2.1.0-dev.20160908","_shasum":"09358786ccf7562c177f5c62808fea334e81b4e1","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"09358786ccf7562c177f5c62808fea334e81b4e1","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160908.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160908.tgz_1473314850284_0.8407958562020212"},"directories":{}},"2.1.0-dev.20160909":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160909","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6b25dab5e3735452b25f821178c28e51421db3c0","_id":"typescript@2.1.0-dev.20160909","_shasum":"adcf80b182769ea0a8144cbfd875e235756966ca","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"adcf80b182769ea0a8144cbfd875e235756966ca","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160909.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160909.tgz_1473401250770_0.6093201250769198"},"directories":{}},"2.1.0-dev.20160910":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160910","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2305c685607f274992b12ac6a0dc5224b0667e89","_id":"typescript@2.1.0-dev.20160910","_shasum":"02a0977e6d276ad8f10e04d12a6e437ce096e116","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"02a0977e6d276ad8f10e04d12a6e437ce096e116","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160910.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160910.tgz_1473487650637_0.1020425409078598"},"directories":{}},"2.1.0-dev.20160911":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160911","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2305c685607f274992b12ac6a0dc5224b0667e89","_id":"typescript@2.1.0-dev.20160911","_shasum":"b3b97c88a8d808a567874e8065a1c59dfd1b1852","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"b3b97c88a8d808a567874e8065a1c59dfd1b1852","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160911.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160911.tgz_1473574072096_0.10062081716023386"},"directories":{}},"2.1.0-dev.20160912":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160912","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"3cca17e17d77224d3de2064fad26e0a339e237e2","_id":"typescript@2.1.0-dev.20160912","_shasum":"2f8f846a549997470bb25e86d0ab8155333e6bcc","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"2f8f846a549997470bb25e86d0ab8155333e6bcc","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160912.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160912.tgz_1473660433879_0.11540155904367566"},"directories":{}},"2.1.0-dev.20160913":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160913","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"9812ab5666e67518663c0d9e1a94af51be399f0a","_id":"typescript@2.1.0-dev.20160913","_shasum":"846f37d76467a871065f25aec001da1962892a37","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"846f37d76467a871065f25aec001da1962892a37","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160913.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160913.tgz_1473746890251_0.21147283888421953"},"directories":{}},"2.1.0-dev.20160914":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160914","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"fe642f558633d8ea0cbfa75cc7e0a82c6d7ae2aa","_id":"typescript@2.1.0-dev.20160914","_shasum":"6697b363ae21da192171f8423e86ea6757fcc2d9","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"6697b363ae21da192171f8423e86ea6757fcc2d9","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160914.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160914.tgz_1473833280114_0.5509565267711878"},"directories":{}},"2.1.0-dev.20160915":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160915","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"bbf80a733c84cc0fefbf87210e8b19c727dbe0d6","_id":"typescript@2.1.0-dev.20160915","_shasum":"2e0086bc1cd0ab146aa2dc945dee3429ba43b5db","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"2e0086bc1cd0ab146aa2dc945dee3429ba43b5db","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160915.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160915.tgz_1473919678310_0.7899313119705766"},"directories":{}},"2.1.0-dev.20160916":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160916","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"50d243e469f7e85ea23a941de9308aa8974981c7","_id":"typescript@2.1.0-dev.20160916","_shasum":"13972b9636005f37a46fa6de1c1a878bc54cca0f","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"13972b9636005f37a46fa6de1c1a878bc54cca0f","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160916.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160916.tgz_1474006088134_0.7629320709966123"},"directories":{}},"2.1.0-dev.20160917":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160917","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"02547fe664a1b5d1f07ea459f054c34e356d3746","_id":"typescript@2.1.0-dev.20160917","_shasum":"0ddfda2542065c0a95d40360cca641dedddcb8f2","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0ddfda2542065c0a95d40360cca641dedddcb8f2","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160917.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160917.tgz_1474092519988_0.7764203362166882"},"directories":{}},"2.1.0-dev.20160918":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160918","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"02547fe664a1b5d1f07ea459f054c34e356d3746","_id":"typescript@2.1.0-dev.20160918","_shasum":"5c3507013b4664ce4d49a42078d7d3a5d9c7f32d","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5c3507013b4664ce4d49a42078d7d3a5d9c7f32d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160918.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160918.tgz_1474178903558_0.22842928464524448"},"directories":{}},"2.1.0-dev.20160919":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160919","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"b7d1d11ba32fe0aa01d7c06ad43c2c7f7d9ffb7f","_id":"typescript@2.1.0-dev.20160919","_shasum":"e8c9f9175a49a47135a1a79dca49676c51311e1a","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e8c9f9175a49a47135a1a79dca49676c51311e1a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160919.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160919.tgz_1474265316838_0.3610878540202975"},"directories":{}},"2.1.0-dev.20160920":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160920","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"070aa83cc06b2974639bbefcde98e6e2fb5fe693","_id":"typescript@2.1.0-dev.20160920","_shasum":"6327e7aafecdf7d336922b84a76f32a5c46b866b","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"6327e7aafecdf7d336922b84a76f32a5c46b866b","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160920.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160920.tgz_1474396973555_0.9266280450392514"},"directories":{}},"2.1.0-dev.20160921":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160921","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"070aa83cc06b2974639bbefcde98e6e2fb5fe693","_id":"typescript@2.1.0-dev.20160921","_shasum":"2a3dd4701a9f29d373b51997f41df1f18a1fd383","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"2a3dd4701a9f29d373b51997f41df1f18a1fd383","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160921.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160921.tgz_1474438075089_0.24451784463599324"},"directories":{}},"2.1.0-dev.20160922":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160922","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"95c3eccbe9f3f7e1857ce157d437e6b80b3c9c6f","_id":"typescript@2.1.0-dev.20160922","_shasum":"f4a25d2cc7efa7c0b9764b0b77d49dd200667e5b","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f4a25d2cc7efa7c0b9764b0b77d49dd200667e5b","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160922.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160922.tgz_1474524497536_0.23874470149166882"},"directories":{}},"2.0.3":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.0.3","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"3.15.1","typescript":"2.0.*"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"4f65a2885e000c27e5f079171d440797d7307b97","_id":"typescript@2.0.3","_shasum":"33dec9eae86b8eee327dd419ca050c853cabd514","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"33dec9eae86b8eee327dd419ca050c853cabd514","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.0.3.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.0.3.tgz_1474560003144_0.4724818258546293"},"directories":{}},"2.1.0-dev.20160923":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160923","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"95c3eccbe9f3f7e1857ce157d437e6b80b3c9c6f","_id":"typescript@2.1.0-dev.20160923","_shasum":"4bbab1acd3ca38b5c6e2f806a5a5dd6c4fb11b3b","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4bbab1acd3ca38b5c6e2f806a5a5dd6c4fb11b3b","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160923.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160923.tgz_1474610875190_0.1106874574907124"},"directories":{}},"2.1.0-dev.20160924":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160924","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"95c3eccbe9f3f7e1857ce157d437e6b80b3c9c6f","_id":"typescript@2.1.0-dev.20160924","_shasum":"d49db8bcd6b529510f8d86bec0cf1519225aaf85","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d49db8bcd6b529510f8d86bec0cf1519225aaf85","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160924.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160924.tgz_1474697272859_0.6839036403689533"},"directories":{}},"2.1.0-dev.20160925":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160925","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"95c3eccbe9f3f7e1857ce157d437e6b80b3c9c6f","_id":"typescript@2.1.0-dev.20160925","_shasum":"44df5d3c20d9dfa819381c35fbd08b3246a45701","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"44df5d3c20d9dfa819381c35fbd08b3246a45701","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160925.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160925.tgz_1474783696093_0.69422786985524"},"directories":{}},"2.1.0-dev.20160926":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160926","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"9950b98b58b453668d0bfab4f07617eda4633152","_id":"typescript@2.1.0-dev.20160926","_shasum":"b7d1e1e6d5537875ccb67ba71971dac2fc23a0ca","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"b7d1e1e6d5537875ccb67ba71971dac2fc23a0ca","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160926.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160926.tgz_1474870093461_0.1468853773549199"},"directories":{}},"2.1.0-dev.20160927":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160927","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a633652f08db9efe43ea63df76ecc6edadbb89c5","_id":"typescript@2.1.0-dev.20160927","_shasum":"44704b148f16b0ef9502c4dc363036c1a3908b23","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"44704b148f16b0ef9502c4dc363036c1a3908b23","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160927.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160927.tgz_1474956490080_0.12269348627887666"},"directories":{}},"2.1.0-dev.20160928":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160928","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"60ab007d3abf3faa39776c4708c1cc14b43dbcc2","_id":"typescript@2.1.0-dev.20160928","_shasum":"915bf924979be9b436748d612d8895d613a7a020","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"915bf924979be9b436748d612d8895d613a7a020","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160928.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160928.tgz_1475042896102_0.5659565720707178"},"directories":{}},"2.1.0-dev.20160929":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160929","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"60ab007d3abf3faa39776c4708c1cc14b43dbcc2","_id":"typescript@2.1.0-dev.20160929","_shasum":"a9fe8a0f4135a2b3413ff0316a83315506778344","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a9fe8a0f4135a2b3413ff0316a83315506778344","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160929.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160929.tgz_1475129280349_0.6854292876087129"},"directories":{}},"2.1.0-dev.20160930":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160930","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"edd8eb8733c965b0145267a6d2cf3b39705639eb","_id":"typescript@2.1.0-dev.20160930","_shasum":"9fd3fe380ab0ae767338145a98f3c34cc0e33148","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"9fd3fe380ab0ae767338145a98f3c34cc0e33148","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160930.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160930.tgz_1475215698555_0.2479304620064795"},"directories":{}},"2.1.0-dev.20161001":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161001","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d1ac8dde0b2a9bc4929cc45a918e29dda651dafe","_id":"typescript@2.1.0-dev.20161001","_shasum":"7a76ed1cd7d3c6a569a2dac8c816a1f6df65dfe5","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"7a76ed1cd7d3c6a569a2dac8c816a1f6df65dfe5","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161001.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161001.tgz_1475302125087_0.5224863062612712"},"directories":{}},"2.1.0-dev.20161002":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161002","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"7a1635f2f4a26151a0a4015cd5e5734e66aa65f7","_id":"typescript@2.1.0-dev.20161002","_shasum":"0472060e9a9442bc2d4599c89b84441df32eac65","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0472060e9a9442bc2d4599c89b84441df32eac65","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161002.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161002.tgz_1475388515946_0.7307403273880482"},"directories":{}},"2.1.0-dev.20161003":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161003","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"7a1635f2f4a26151a0a4015cd5e5734e66aa65f7","_id":"typescript@2.1.0-dev.20161003","_shasum":"124b2bb1459829320e17516ca908330c586f88f1","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"124b2bb1459829320e17516ca908330c586f88f1","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161003.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161003.tgz_1475474900531_0.32315184106118977"},"directories":{}},"2.1.0-dev.20161004":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161004","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a0fc9059f927b289461ded2128b802d56118cd37","_id":"typescript@2.1.0-dev.20161004","_shasum":"eae4bd868605b2ae20cb1c65fc4f73fd7881b056","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"eae4bd868605b2ae20cb1c65fc4f73fd7881b056","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161004.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161004.tgz_1475561324799_0.25964410114102066"},"directories":{}},"2.1.0-dev.20161005":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161005","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ebb17e801923e041c03fae1363d60de4e2f20bf5","_id":"typescript@2.1.0-dev.20161005","_shasum":"34d9e4e1b3c39acb88d0118fe09fb26acf144ca4","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"34d9e4e1b3c39acb88d0118fe09fb26acf144ca4","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161005.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161005.tgz_1475647723256_0.45440940582193434"},"directories":{}},"2.1.0-dev.20161006":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161006","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d72a0430ca1c2c9140ced639a54d5f18bbafb96d","_id":"typescript@2.1.0-dev.20161006","_shasum":"7a8fbd3f34daaefa6386fed0dee15f97ab8c70fc","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"7a8fbd3f34daaefa6386fed0dee15f97ab8c70fc","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161006.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161006.tgz_1475734136888_0.38792360899969935"},"directories":{}},"2.1.0-dev.20161007":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161007","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"9c0d6b2175a8aaa40dc528ebcc000b644c699559","_id":"typescript@2.1.0-dev.20161007","_shasum":"304d8dfa408a4c8447b63a24495cb9285837be45","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"304d8dfa408a4c8447b63a24495cb9285837be45","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161007.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161007.tgz_1475820526479_0.48157797125168145"},"directories":{}},"2.0.6-insiders.20161007":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.0.6-insiders.20161007","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"3.15.1","typescript":"2.0.*"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ca8057e5c7781bfeefd81c8234369c8c5b2f7d19","_id":"typescript@2.0.6-insiders.20161007","_shasum":"79e5135c932c10869a804468bc35b760806dbc94","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"79e5135c932c10869a804468bc35b760806dbc94","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.0.6-insiders.20161007.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.0.6-insiders.20161007.tgz_1475884013859_0.36589682660996914"},"directories":{}},"2.1.0-dev.20161008":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161008","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d34916abf8682af409d4b1426f0bb0c2f1700eac","_id":"typescript@2.1.0-dev.20161008","_shasum":"e3d9f8e2d44c103368906359a98d740d4e2257a3","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e3d9f8e2d44c103368906359a98d740d4e2257a3","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161008.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161008.tgz_1475906961410_0.3471648287959397"},"directories":{}},"2.1.0-dev.20161009":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161009","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d34916abf8682af409d4b1426f0bb0c2f1700eac","_id":"typescript@2.1.0-dev.20161009","_shasum":"5bd1188042760fd2ee1cf4c470f4668a9d012127","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5bd1188042760fd2ee1cf4c470f4668a9d012127","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161009.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161009.tgz_1475993309386_0.8348111747764051"},"directories":{}},"2.1.0-dev.20161010":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161010","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d34916abf8682af409d4b1426f0bb0c2f1700eac","_id":"typescript@2.1.0-dev.20161010","_shasum":"8786e1e14650cc4c7be019e1759b131453cee363","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8786e1e14650cc4c7be019e1759b131453cee363","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161010.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161010.tgz_1476079702829_0.3145750726107508"},"directories":{}},"2.1.0-dev.20161011":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161011","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"3b0515fd8b8742d1c25c70642e853a9ed4e324c7","_id":"typescript@2.1.0-dev.20161011","_shasum":"06319024a2708d64921f4cda18791a3b49d47725","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"06319024a2708d64921f4cda18791a3b49d47725","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161011.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161011.tgz_1476166122404_0.24179362575523555"},"directories":{}},"2.1.0-dev.20161012":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161012","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"9f73ae59035b17ff7498d1e2d968137f06404d82","_id":"typescript@2.1.0-dev.20161012","_shasum":"f03053419a0d6528217f8112087b404e3290a2dd","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f03053419a0d6528217f8112087b404e3290a2dd","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161012.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161012.tgz_1476252527707_0.5056233052164316"},"directories":{}},"2.0.6-insiders.20161012":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.0.6-insiders.20161012","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"3.15.1","typescript":"2.0.*"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"635313ee45e1edd09e5e6e849cc58d2ffdacdfc8","_id":"typescript@2.0.6-insiders.20161012","_shasum":"0d3635b7fc1c752ffb8f4707bc6808c8c4d7f006","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"0d3635b7fc1c752ffb8f4707bc6808c8c4d7f006","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.0.6-insiders.20161012.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.0.6-insiders.20161012.tgz_1476321779893_0.024057665141299367"},"directories":{}},"2.1.0-dev.20161013":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161013","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"31a55e64523ec38b6e484f92fb2756b57e4f439d","_id":"typescript@2.1.0-dev.20161013","_shasum":"79b8ce0e3bf97153ac392a9a5d275a8c832016d8","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"79b8ce0e3bf97153ac392a9a5d275a8c832016d8","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161013.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161013.tgz_1476338937439_0.36088081705383956"},"directories":{}},"2.1.0-dev.20161014":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161014","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"cdafc9dca1df725e6684a84433d147710870e2bd","_id":"typescript@2.1.0-dev.20161014","_shasum":"a5a32c64f0fd95d055de6687705a588fe8ffd901","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a5a32c64f0fd95d055de6687705a588fe8ffd901","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161014.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161014.tgz_1476425316282_0.6303214551880956"},"directories":{}},"2.0.6-insiders.20161014":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.0.6-insiders.20161014","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"3.15.1","typescript":"2.0.*"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"3030442f525b52c8fe11822b9d5a79deb0b45b48","_id":"typescript@2.0.6-insiders.20161014","_shasum":"4a2ca944708ecef95e2d6179d8b03e49e52c82b2","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"4a2ca944708ecef95e2d6179d8b03e49e52c82b2","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.0.6-insiders.20161014.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.0.6-insiders.20161014.tgz_1476472277614_0.1924369919579476"},"directories":{}},"2.1.0-dev.20161015":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161015","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a1cbfcae4b2560f2709a88e4d41185ac548c5e5c","_id":"typescript@2.1.0-dev.20161015","_shasum":"8754ef8f5d95d54ded7e2857116cd9676285fb9f","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8754ef8f5d95d54ded7e2857116cd9676285fb9f","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161015.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161015.tgz_1476511737558_0.49819342722184956"},"directories":{}},"2.1.0-dev.20161016":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161016","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"65b1cf665e6d387a09aa7c6dde149992ca05aa17","_id":"typescript@2.1.0-dev.20161016","_shasum":"0158cafe224e2e1fa4aa5b9e884f6b65ba577ca3","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0158cafe224e2e1fa4aa5b9e884f6b65ba577ca3","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161016.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161016.tgz_1476598117198_0.09547841153107584"},"directories":{}},"2.1.0-dev.20161017":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161017","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"65b1cf665e6d387a09aa7c6dde149992ca05aa17","_id":"typescript@2.1.0-dev.20161017","_shasum":"eee37999418fd7f9f5b8bc8f5adf38d235a995cb","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"eee37999418fd7f9f5b8bc8f5adf38d235a995cb","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161017.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161017.tgz_1476684542482_0.7064095779787749"},"directories":{}},"2.0.6-insiders.20161017":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.0.6-insiders.20161017","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"3.15.1","typescript":"2.0.*"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ea3cbfbca43dcc1f3256afd42e78fdaf76e0454c","_id":"typescript@2.0.6-insiders.20161017","_shasum":"aeabc76cb09b33057bdc4bfda26a1e8c94257d4e","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"aeabc76cb09b33057bdc4bfda26a1e8c94257d4e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.0.6-insiders.20161017.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.0.6-insiders.20161017.tgz_1476754516742_0.9117188674863428"},"directories":{}},"2.1.0-dev.20161018":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161018","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"68c485d9f94036a7f6953bfb8e03e5c4816bea80","_id":"typescript@2.1.0-dev.20161018","_shasum":"0dec581b522c54678969925128f45cca95cffdc0","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0dec581b522c54678969925128f45cca95cffdc0","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161018.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161018.tgz_1476770924850_0.3112610881216824"},"directories":{}},"2.1.0-dev.20161019":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161019","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"14e5de3b1d6eafa2d3213a72b8599ecc972ed419","_id":"typescript@2.1.0-dev.20161019","_shasum":"45c6a32b1b4a00dd87c8e1e3ee3e00b80f61b5c0","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"45c6a32b1b4a00dd87c8e1e3ee3e00b80f61b5c0","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161019.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161019.tgz_1476857338759_0.9975527203641832"},"directories":{}},"2.1.0-dev.20161020":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161020","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"4fbbbed321baa58418b9379b418278d31400fe3e","_id":"typescript@2.1.0-dev.20161020","_shasum":"c4cf57674d10f3da5017a88c53b7506b3a9cd03e","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"c4cf57674d10f3da5017a88c53b7506b3a9cd03e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161020.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161020.tgz_1476943757696_0.4401043807156384"},"directories":{}},"2.1.0-dev.20161021":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161021","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"3263fdec7cd4f464ec211fd8c82865039da79d7e","_id":"typescript@2.1.0-dev.20161021","_shasum":"f4d3b80d72efa99539f0461372cde182d14cdf41","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f4d3b80d72efa99539f0461372cde182d14cdf41","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161021.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161021.tgz_1477030128544_0.9167353224474937"},"directories":{}},"2.1.0-dev.20161022":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161022","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"cef9d8597914f633f51c15b5ae6f9691c4dcfbc5","_id":"typescript@2.1.0-dev.20161022","_shasum":"efbbe17ca29f88c110f7c94e9a88d849e32e30f4","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"efbbe17ca29f88c110f7c94e9a88d849e32e30f4","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161022.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161022.tgz_1477116509148_0.12494631693698466"},"directories":{}},"2.1.0-dev.20161023":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161023","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"cef9d8597914f633f51c15b5ae6f9691c4dcfbc5","_id":"typescript@2.1.0-dev.20161023","_shasum":"7065b4f858b53ec73f4cf865f28f6483fff6e400","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"7065b4f858b53ec73f4cf865f28f6483fff6e400","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161023.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161023.tgz_1477202944705_0.21954477997496724"},"directories":{}},"2.1.0-dev.20161024":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161024","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"cef9d8597914f633f51c15b5ae6f9691c4dcfbc5","_id":"typescript@2.1.0-dev.20161024","_shasum":"8c9bd571ce990a1bc01444e28b5124658145b83a","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8c9bd571ce990a1bc01444e28b5124658145b83a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161024.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161024.tgz_1477289335302_0.23214965988881886"},"directories":{}},"2.1.0-dev.20161025":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161025","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"3bdff73c16b5a7eca2407500254764618b35bce4","_id":"typescript@2.1.0-dev.20161025","_shasum":"183de682d0b22b23fd1a040d6559b193d1bc0c7c","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"183de682d0b22b23fd1a040d6559b193d1bc0c7c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161025.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161025.tgz_1477375752671_0.7953087924979627"},"directories":{}},"2.0.6":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.0.6","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"3.15.1","typescript":"2.0.*"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"80bca648441e0ddd4c1cec26a17da27d9cc49c91","_id":"typescript@2.0.6","_shasum":"5385499ac9811508c2c43e0ea07a1ddca435e111","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5385499ac9811508c2c43e0ea07a1ddca435e111","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.0.6.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.0.6.tgz_1477418019854_0.024905235040932894"},"directories":{}},"2.1.0-dev.20161026":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161026","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"f6b82d5e9ff4ee5a9e2188536b9d6dcf57d3c893","_id":"typescript@2.1.0-dev.20161026","_shasum":"9157eb9af6ee7d8c39ab8b8ba417ccf18c6069e7","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"9157eb9af6ee7d8c39ab8b8ba417ccf18c6069e7","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161026.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161026.tgz_1477462182202_0.7571386282797903"},"directories":{}},"2.1.0-dev.20161027":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161027","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e6bea90a1f34a1fb00b0f6d842c97ca3aae50891","_id":"typescript@2.1.0-dev.20161027","_shasum":"f6456102956dee194398fa1ad093b944c8db4f0a","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f6456102956dee194398fa1ad093b944c8db4f0a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161027.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161027.tgz_1477548536110_0.5045525862369686"},"directories":{}},"2.1.0-dev.20161028":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161028","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"4513ae3034a21c728d610a74c39ab833646024e9","_id":"typescript@2.1.0-dev.20161028","_shasum":"4b7b67c734254db040566f7289f7eda5e9565825","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4b7b67c734254db040566f7289f7eda5e9565825","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161028.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161028.tgz_1477634924869_0.5119802274275571"},"directories":{}},"2.1.0-dev.20161029":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161029","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"980f9fd2a91c956b7bf09c19fd8b8f968cf6f278","_id":"typescript@2.1.0-dev.20161029","_shasum":"889598d3b2a3b5c8d7e2ad6a8ba7f300eff27caa","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"889598d3b2a3b5c8d7e2ad6a8ba7f300eff27caa","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161029.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161029.tgz_1477721337236_0.40156461601145566"},"directories":{}},"2.1.0-dev.20161030":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161030","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"44ce59d1d8c0148e7f32dfa55ea65a2b394bfbb9","_id":"typescript@2.1.0-dev.20161030","_shasum":"bf258553c416dd5bbd6227eed728a9098dab5081","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"bf258553c416dd5bbd6227eed728a9098dab5081","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161030.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161030.tgz_1477807750758_0.0829834605101496"},"directories":{}},"2.1.0-dev.20161031":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161031","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"44ce59d1d8c0148e7f32dfa55ea65a2b394bfbb9","_id":"typescript@2.1.0-dev.20161031","_shasum":"bcea4c7c0b6c9cf1f7bfa403bd64513c8fc782b0","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"bcea4c7c0b6c9cf1f7bfa403bd64513c8fc782b0","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161031.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161031.tgz_1477894126372_0.20539986807852983"},"directories":{}},"2.1.0-dev.20161101":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161101","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"4371889854d67cfabf39b22dd9f2cb9822152596","_id":"typescript@2.1.0-dev.20161101","_shasum":"c2abfbb4eaf2be5972d95799ebdce28d73a239af","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"c2abfbb4eaf2be5972d95799ebdce28d73a239af","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161101.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161101.tgz_1477980536904_0.8716443288139999"},"directories":{}},"2.1.0-dev.20161102":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161102","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6b94bae437b96614266c38b653aee3aad541d865","_id":"typescript@2.1.0-dev.20161102","_shasum":"780d4a676b9df09c866e536cb40cf9f93feee65b","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"780d4a676b9df09c866e536cb40cf9f93feee65b","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161102.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161102.tgz_1478066924952_0.37231264053843915"},"directories":{}},"2.1.0-dev.20161103":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161103","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ab75ea75d337d82138083c52caea7419f3b20929","_id":"typescript@2.1.0-dev.20161103","_shasum":"747a2e148526cd10d8e7723e731bdbbf57f3b65e","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"747a2e148526cd10d8e7723e731bdbbf57f3b65e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161103.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161103.tgz_1478153338922_0.7183836842887104"},"directories":{}},"2.0.7":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.0.7","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"3.15.1","typescript":"2.0.*"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"dbf69b7873367377ee2fae4eea198074a6f6f7c6","_id":"typescript@2.0.7","_shasum":"efc39e8822e240d0b741d06ff86708137bcdb5e4","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"efc39e8822e240d0b741d06ff86708137bcdb5e4","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.0.7.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.0.7.tgz_1478210687167_0.05890897079370916"},"directories":{}},"2.1.0-dev.20161104":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161104","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"4.0.0-dev.0","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"1c004bf317a3e9103572668191055ba1c86f1788","_id":"typescript@2.1.0-dev.20161104","_shasum":"01ebabbc76b36c6fb56a77f9df34fc7fe5fe8512","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"01ebabbc76b36c6fb56a77f9df34fc7fe5fe8512","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161104.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161104.tgz_1478239758532_0.9955955028999597"},"directories":{}},"2.1.0-dev.20161105":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161105","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"4.0.0-dev.0","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ed4fead087ab0fea1811e4b42b6d8e599ee13f1e","_id":"typescript@2.1.0-dev.20161105","_shasum":"be261e6cfeccaad5026aeab22f938ae0d91f5897","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"be261e6cfeccaad5026aeab22f938ae0d91f5897","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161105.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161105.tgz_1478326155953_0.10281790257431567"},"directories":{}},"2.1.0-dev.20161106":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161106","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"4.0.0-dev.0","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ed4fead087ab0fea1811e4b42b6d8e599ee13f1e","_id":"typescript@2.1.0-dev.20161106","_shasum":"f6197280f92e2b306f40c0bc89ccece954b5764d","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f6197280f92e2b306f40c0bc89ccece954b5764d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161106.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161106.tgz_1478412540497_0.039761449210345745"},"directories":{}},"2.1.0-dev.20161107":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161107","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"4.0.0-dev.0","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ed4fead087ab0fea1811e4b42b6d8e599ee13f1e","_id":"typescript@2.1.0-dev.20161107","_shasum":"420e8ea43693dde3ab62853fd1edbafce53087a3","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"420e8ea43693dde3ab62853fd1edbafce53087a3","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161107.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161107.tgz_1478502525023_0.5875145960599184"},"directories":{}},"2.0.8":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.0.8","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"3.15.1","typescript":"2.0.*"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"cc81fa76ff822bd4ea1be41b4ed9c61346984fd0","_id":"typescript@2.0.8","_shasum":"c249f530890e0f992e71733b2e0554d792cb8970","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"c249f530890e0f992e71733b2e0554d792cb8970","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.0.8.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.0.8.tgz_1478568615372_0.22711650398559868"},"directories":{}},"2.1.0-dev.20161108":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161108","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"4.0.0-dev.0","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"84f8f8bba89ff459180852179c31ea7e9105736d","_id":"typescript@2.1.0-dev.20161108","_shasum":"0a1a63a47741c74359fac7fe877b254b0f88ca5f","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0a1a63a47741c74359fac7fe877b254b0f88ca5f","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161108.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161108.tgz_1478588941321_0.6590555729344487"},"directories":{}},"2.1.1":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.1","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"4.0.0-dev.0","typescript":"2.1.0-dev.20161101"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"8e8ec9f81d6282c70ef268736c5ed4541c3facbe","_id":"typescript@2.1.1","_shasum":"41c2b64472f529331b2055c0424862b44ce58d42","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"41c2b64472f529331b2055c0424862b44ce58d42","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.1.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.1.tgz_1478626299474_0.7849834312219173"},"directories":{}},"2.1.0-dev.20161109":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161109","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"4.0.0-dev.0","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"28cc9385035a65f5dcd74a4f9b47e7022678302f","_id":"typescript@2.1.0-dev.20161109","_shasum":"4b0bd9899f30e2154cc3270a589c0bb09971cd8a","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4b0bd9899f30e2154cc3270a589c0bb09971cd8a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161109.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161109.tgz_1478675364370_0.1273908147122711"},"directories":{}},"2.1.0-dev.20161110":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161110","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"4.0.0-dev.0","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"28cc9385035a65f5dcd74a4f9b47e7022678302f","_id":"typescript@2.1.0-dev.20161110","_shasum":"0a42c357ede83149a203b9ad227d6718ce796f57","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0a42c357ede83149a203b9ad227d6718ce796f57","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161110.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161110.tgz_1478761727251_0.26640002080239356"},"directories":{}},"2.0.9":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.0.9","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"3.15.1","typescript":"2.0.*"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"dcaad61583ef89b131b71c81af90b4ab0c1c9c98","_id":"typescript@2.0.9","_shasum":"b4f5fecc3f44d5c717f3b3e7c331e5bbb147a53d","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"b4f5fecc3f44d5c717f3b3e7c331e5bbb147a53d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.0.9.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.0.9.tgz_1478827360713_0.8075786849949509"},"directories":{}},"2.2.0-dev.20161111":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161111","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"4.0.0-dev.0","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ea309fe504368075781267261341d4cc83fdd917","_id":"typescript@2.2.0-dev.20161111","_shasum":"166fbbef16a4ed2751bb094c818c6d481f93c413","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"166fbbef16a4ed2751bb094c818c6d481f93c413","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161111.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161111.tgz_1478848141703_0.5502103539183736"},"directories":{}},"2.2.0-dev.20161112":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161112","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"4.0.0-dev.0","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"0e879c0bbf3edf9f5c9fda7a81b9d99f726f41b3","_id":"typescript@2.2.0-dev.20161112","_shasum":"94e32074737839e967f85640bf1661f031cf51d9","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"94e32074737839e967f85640bf1661f031cf51d9","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161112.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161112.tgz_1478934542520_0.6979609068948776"},"directories":{}},"2.2.0-dev.20161113":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161113","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"4.0.0-dev.0","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"0e879c0bbf3edf9f5c9fda7a81b9d99f726f41b3","_id":"typescript@2.2.0-dev.20161113","_shasum":"d0b7249e1231cc6217fcd7e519532e59b83f9970","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d0b7249e1231cc6217fcd7e519532e59b83f9970","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161113.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161113.tgz_1479020940703_0.49589275009930134"},"directories":{}},"2.2.0-dev.20161114":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161114","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"f437c8f3184b32c15f1bd11f73adf9ea4edf57b9","_id":"typescript@2.2.0-dev.20161114","_shasum":"9a31b8ecf0e2e144d6a8714195650b21ddd0021b","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"9a31b8ecf0e2e144d6a8714195650b21ddd0021b","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161114.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161114.tgz_1479107317444_0.27877750992774963"},"directories":{}},"2.2.0-dev.20161115":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161115","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ddf2ad4ba110f097e722cc177dacfa33f61dd7d7","_id":"typescript@2.2.0-dev.20161115","_shasum":"62a9ff8878ac32d8029c3959b33fbae900ee7173","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"62a9ff8878ac32d8029c3959b33fbae900ee7173","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161115.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161115.tgz_1479193723510_0.6717711850069463"},"directories":{}},"2.0.10":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.0.10","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"3.15.1","typescript":"2.0.*"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"790a5c7735373475505dfc98af6d87241b165ed3","_id":"typescript@2.0.10","_shasum":"ccdd4ed86fd5550a407101a0814012e1b3fac3dd","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ccdd4ed86fd5550a407101a0814012e1b3fac3dd","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.0.10.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.0.10.tgz_1479251255708_0.7381546567194164"},"directories":{}},"2.2.0-dev.20161116":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161116","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a7d97c0ecee3b4de313ec805564298c88fd6b877","_id":"typescript@2.2.0-dev.20161116","_shasum":"30be49322b4ff71bae979a334c155e61e3934e60","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"30be49322b4ff71bae979a334c155e61e3934e60","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161116.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161116.tgz_1479280153654_0.9548490364104509"},"directories":{}},"2.2.0-dev.20161117":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161117","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"52ec508e27fccd8a1d7c601918b70417086b9798","_id":"typescript@2.2.0-dev.20161117","_shasum":"302dcb24cf33604eea32f7a5699ccf12fca9bef3","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"302dcb24cf33604eea32f7a5699ccf12fca9bef3","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161117.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161117.tgz_1479366771709_0.956751512363553"},"directories":{}},"2.2.0-dev.20161118":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161118","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"9fec77551c25a0c7930f84cfd10d4d71b866268b","_id":"typescript@2.2.0-dev.20161118","_shasum":"017e95055790c2cc79fd5f96b28c8a9372d80b4f","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"017e95055790c2cc79fd5f96b28c8a9372d80b4f","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161118.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161118.tgz_1479453133017_0.346922678174451"},"directories":{}},"2.2.0-dev.20161120":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161120","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"f2a7434fa3735bb123e5818adae89271f51350cf","_id":"typescript@2.2.0-dev.20161120","_shasum":"0cb085179728f97d256475afc02046bba55accc2","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0cb085179728f97d256475afc02046bba55accc2","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161120.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161120.tgz_1479625976653_0.6373305409215391"},"directories":{}},"2.2.0-dev.20161121":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161121","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"998246af9c7cb7e116b421b83983da90ec948546","_id":"typescript@2.2.0-dev.20161121","_shasum":"3108e22686267c84d62b3c8dcfe77cee971d869c","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"3108e22686267c84d62b3c8dcfe77cee971d869c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161121.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161121.tgz_1479712388580_0.23873995756730437"},"directories":{}},"2.2.0-dev.20161122":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161122","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2d16b19ef9693f21e09bc933ee5a1709d848aaec","_id":"typescript@2.2.0-dev.20161122","_shasum":"da70f3dae1677d51d10a29079f7a2f9cab8464e1","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"da70f3dae1677d51d10a29079f7a2f9cab8464e1","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161122.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161122.tgz_1479798759363_0.20626080594956875"},"directories":{}},"2.2.0-dev.20161123":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161123","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"855431a9431a0454e7f683e5d1ba4b12b4a33f2a","_id":"typescript@2.2.0-dev.20161123","_shasum":"bdd7d9e84db2475801a03eb71303b9b629ddf8f6","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"bdd7d9e84db2475801a03eb71303b9b629ddf8f6","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161123.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161123.tgz_1479885212055_0.7795378363225609"},"directories":{}},"2.2.0-dev.20161124":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161124","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e128add54eb13192f1ec836a6623ae765fcaa758","_id":"typescript@2.2.0-dev.20161124","_shasum":"9902edafadefef09d21c65c42c4b39433fffc72d","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"9902edafadefef09d21c65c42c4b39433fffc72d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161124.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161124.tgz_1479971585031_0.39477067976258695"},"directories":{}},"2.2.0-dev.20161125":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161125","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e128add54eb13192f1ec836a6623ae765fcaa758","_id":"typescript@2.2.0-dev.20161125","_shasum":"ee8c22665933a99492231ce42c2663a456b22841","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ee8c22665933a99492231ce42c2663a456b22841","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161125.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161125.tgz_1480057976122_0.7113316936884075"},"directories":{}},"2.2.0-dev.20161126":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161126","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"5ba678a619465d1ab78c1f1c4be79448a0217587","_id":"typescript@2.2.0-dev.20161126","_shasum":"a73105db486686cb0cabb0a90e2103cad5069334","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a73105db486686cb0cabb0a90e2103cad5069334","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161126.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161126.tgz_1480144418290_0.9434746277984232"},"directories":{}},"2.2.0-dev.20161127":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161127","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"88b7d539783511aa326338f93a3b8a0c40d55d4c","_id":"typescript@2.2.0-dev.20161127","_shasum":"3da590d1a0f15da9c39d2ebeab2006fb6b4d8949","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"3da590d1a0f15da9c39d2ebeab2006fb6b4d8949","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161127.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161127.tgz_1480230803732_0.03623790247365832"},"directories":{}},"2.2.0-dev.20161128":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161128","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"88b7d539783511aa326338f93a3b8a0c40d55d4c","_id":"typescript@2.2.0-dev.20161128","_shasum":"1609ccf1268c57ba151864755cccd23d99266d68","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"1609ccf1268c57ba151864755cccd23d99266d68","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161128.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161128.tgz_1480317187122_0.8314359069336206"},"directories":{}},"2.2.0-dev.20161129":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161129","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e313fef68324c1bbd4d89d6ad868a37c4b728ee9","_id":"typescript@2.2.0-dev.20161129","_shasum":"f39bc67c5eecf5aab925504b72145be571a1e708","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f39bc67c5eecf5aab925504b72145be571a1e708","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161129.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161129.tgz_1480403567329_0.5650821782182902"},"directories":{}},"2.1.3-insiders.20161130":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.3-insiders.20161130","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"4.0.0-dev.2","typescript":"^2.1"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"501bfb53260a265f12b684fc36f2855587981b6a","_id":"typescript@2.1.3-insiders.20161130","_shasum":"551668ba383827bdf4033aa99c6c4c3f0bd80cec","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"551668ba383827bdf4033aa99c6c4c3f0bd80cec","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.3-insiders.20161130.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.3-insiders.20161130.tgz_1480469442801_0.6932965891901404"},"directories":{}},"2.2.0-dev.20161130":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161130","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"4c9bdb932af4f04f4455848c80280f2c7e8da613","_id":"typescript@2.2.0-dev.20161130","_shasum":"d8c132bbf89714b744c09e348a33e02488afee24","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d8c132bbf89714b744c09e348a33e02488afee24","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161130.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161130.tgz_1480489974965_0.9337933983188123"},"directories":{}},"2.2.0-dev.20161201":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161201","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"fc1f6e3ee6acea2176488a120999f4d2b0f48825","_id":"typescript@2.2.0-dev.20161201","_shasum":"14b7a5b09d591aaf91ebabac27fac44830bcc6c4","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"14b7a5b09d591aaf91ebabac27fac44830bcc6c4","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161201.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161201.tgz_1480576319686_0.08125246106646955"},"directories":{}},"2.1.4-insiders.20161201":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.4-insiders.20161201","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"4.0.0-dev.2","typescript":"^2.1"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a9621760b3dec02f36bebba4bbd28bf615bf68c9","_id":"typescript@2.1.4-insiders.20161201","_shasum":"c184e100495604f3e646981f14f06392b2186e50","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"c184e100495604f3e646981f14f06392b2186e50","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.4-insiders.20161201.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.4-insiders.20161201.tgz_1480625328124_0.9393948612269014"},"directories":{}},"2.2.0-dev.20161202":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161202","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"efe7b65fa6846154bfd0e42184762df490fb8068","_id":"typescript@2.2.0-dev.20161202","_shasum":"c4ccc0c8e6f0bd25405d12f96aff4e01ffb892a2","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"c4ccc0c8e6f0bd25405d12f96aff4e01ffb892a2","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161202.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161202.tgz_1480662739336_0.5403089607134461"},"directories":{}},"2.2.0-dev.20161203":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161203","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a230cb7e772970b38c51d1f506243b23b98ebcb0","_id":"typescript@2.2.0-dev.20161203","_shasum":"fc7ebfee8a68a15c5e2762c1d072c76e1e00100d","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"fc7ebfee8a68a15c5e2762c1d072c76e1e00100d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161203.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161203.tgz_1480749138960_0.1989189174491912"},"directories":{}},"2.2.0-dev.20161204":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161204","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"f61a22478ad34a560c8cd1fa8f72ae0a2407ced6","_id":"typescript@2.2.0-dev.20161204","_shasum":"74774de05d27467626559dba4f37e383c475bbc5","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"74774de05d27467626559dba4f37e383c475bbc5","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161204.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161204.tgz_1480835549285_0.4754345240071416"},"directories":{}},"2.2.0-dev.20161205":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161205","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"b7e8a6d1f163a50e9a73716e267abbb5996ffbbc","_id":"typescript@2.2.0-dev.20161205","_shasum":"5d03250ff4acbfddd641129eb97098156f11f1a9","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5d03250ff4acbfddd641129eb97098156f11f1a9","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161205.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161205.tgz_1480921957812_0.9915765910409391"},"directories":{}},"2.1.4-insiders.20161206":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.4-insiders.20161206","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"4.0.0-dev.2","typescript":"^2.1"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"409311f3634afdcf0423670661758fe9e7c87a99","_id":"typescript@2.1.4-insiders.20161206","_shasum":"9f816358519f4f40d6d35d0220085e77afd979cb","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"9f816358519f4f40d6d35d0220085e77afd979cb","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.4-insiders.20161206.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.4-insiders.20161206.tgz_1480991715921_0.3231662584003061"},"directories":{}},"2.2.0-dev.20161206":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161206","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"225d6d6aef11484708e319940f148b89edfb6323","_id":"typescript@2.2.0-dev.20161206","_shasum":"12afecd7146249a84c1b06338c9cda29261fd00d","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"12afecd7146249a84c1b06338c9cda29261fd00d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161206.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161206.tgz_1481008354576_0.23662444949150085"},"directories":{}},"2.2.0-dev.20161207":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161207","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c1ec7eff08f3d98f3310be885d1a1a01e7e6eeb6","_id":"typescript@2.2.0-dev.20161207","_shasum":"0b9cc8e95c1adc2dd91bb4fff303e573b9f2a650","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0b9cc8e95c1adc2dd91bb4fff303e573b9f2a650","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161207.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161207.tgz_1481094792932_0.09472501534037292"},"directories":{}},"2.1.4":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.4","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"4.0.0-dev.2","typescript":"^2.1"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"409311f3634afdcf0423670661758fe9e7c87a99","_id":"typescript@2.1.4","_shasum":"b53b69fb841126acb1dd4b397d21daba87572251","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"b53b69fb841126acb1dd4b397d21daba87572251","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.4.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.4.tgz_1481130051247_0.27785680117085576"},"directories":{}},"2.2.0-dev.20161208":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161208","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"91f0194e6aee5b7a612b84bef2f8b25a069423d9","_id":"typescript@2.2.0-dev.20161208","_shasum":"241592b53a6ff814f1316edaba7629178eeac192","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"241592b53a6ff814f1316edaba7629178eeac192","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161208.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161208.tgz_1481181198783_0.3199639576487243"},"directories":{}},"2.2.0-dev.20161209":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161209","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"7da338350406f60e9bb26ea0ad0ee8d97e12fd4e","_id":"typescript@2.2.0-dev.20161209","_shasum":"fbaa0dd50ca145f2eb659c9d0fab3ac833761315","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"fbaa0dd50ca145f2eb659c9d0fab3ac833761315","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161209.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161209.tgz_1481267581150_0.05701764393597841"},"directories":{}},"2.2.0-dev.20161210":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161210","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"f27fe0d7814676b23062668556ba4be0b15ffec9","_id":"typescript@2.2.0-dev.20161210","_shasum":"9bfa2186c9fd8976f7fb54aa74aa3fe65b3f5e2d","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"9bfa2186c9fd8976f7fb54aa74aa3fe65b3f5e2d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161210.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161210.tgz_1481353962537_0.0605899952352047"},"directories":{}},"2.2.0-dev.20161211":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161211","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"7c5c664a1cca6d24e0aaefdb76f450cf4237f59f","_id":"typescript@2.2.0-dev.20161211","_shasum":"aae660106b16945abf6bbb6d74a007205f92cd0a","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"aae660106b16945abf6bbb6d74a007205f92cd0a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161211.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161211.tgz_1481440362863_0.16706183273345232"},"directories":{}},"2.2.0-dev.20161212":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161212","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"7c5c664a1cca6d24e0aaefdb76f450cf4237f59f","_id":"typescript@2.2.0-dev.20161212","_shasum":"97c6561f6e95b9b1402b733e0e106079dcf99a7f","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"97c6561f6e95b9b1402b733e0e106079dcf99a7f","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161212.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161212.tgz_1481526763835_0.888421154115349"},"directories":{}},"2.2.0-dev.20161213":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161213","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c76a3a6feff5bc0bdf10b304373453fd295aa1ca","_id":"typescript@2.2.0-dev.20161213","_shasum":"dbd806dae796b46ec5918dcb619ea0119f74687e","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"dbd806dae796b46ec5918dcb619ea0119f74687e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161213.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161213.tgz_1481613148027_0.8980310650076717"},"directories":{}},"2.1.5-insiders.20161213":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.5-insiders.20161213","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"4.0.0-dev.2","typescript":"^2.1"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a6decf98bffabcfb50f928ce10f00ea9e2d66206","_id":"typescript@2.1.5-insiders.20161213","_shasum":"a4ff2d04205c1595879a577e1daa2d26292713a5","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a4ff2d04205c1595879a577e1daa2d26292713a5","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.5-insiders.20161213.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.5-insiders.20161213.tgz_1481672577351_0.33862460241653025"},"directories":{}},"2.2.0-dev.20161214":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161214","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"8f4cefe4fd68c6fcdf312506f20e36ea5edc8cea","_id":"typescript@2.2.0-dev.20161214","_shasum":"50da518d9bcacdef84766f251d7834d846959197","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"50da518d9bcacdef84766f251d7834d846959197","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161214.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161214.tgz_1481699626689_0.2389619799796492"},"directories":{}},"2.2.0-dev.20161215":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161215","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"366dfc052f5c1104e2b5cdfdb44c1de581093120","_id":"typescript@2.2.0-dev.20161215","_shasum":"574d53d5a842e0cf18e5d8f81409a898d378bba1","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"574d53d5a842e0cf18e5d8f81409a898d378bba1","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161215.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161215.tgz_1481785995378_0.7674646461382508"},"directories":{}},"2.2.0-dev.20161216":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161216","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"0f78f537800582efb2e0f20b3a8e498302161ad9","_id":"typescript@2.2.0-dev.20161216","_shasum":"21715a1cdf9335a4b112efbf27b05799421e048a","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"21715a1cdf9335a4b112efbf27b05799421e048a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161216.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161216.tgz_1481872419118_0.02583544421941042"},"directories":{}},"2.2.0-dev.20161217":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161217","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"0f78f537800582efb2e0f20b3a8e498302161ad9","_id":"typescript@2.2.0-dev.20161217","_shasum":"d78cb0bb4085ba29263f23f110ab20a31cadcf8c","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d78cb0bb4085ba29263f23f110ab20a31cadcf8c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161217.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161217.tgz_1481958726052_0.6019192733801901"},"directories":{}},"2.2.0-dev.20161218":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161218","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"0f78f537800582efb2e0f20b3a8e498302161ad9","_id":"typescript@2.2.0-dev.20161218","_shasum":"f94c333e6171dd0cdac8ec5d2e988a8f32072ec0","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f94c333e6171dd0cdac8ec5d2e988a8f32072ec0","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161218.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161218.tgz_1482045175678_0.21156570361927152"},"directories":{}},"2.2.0-dev.20161219":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161219","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"0f78f537800582efb2e0f20b3a8e498302161ad9","_id":"typescript@2.2.0-dev.20161219","_shasum":"651c3a97a2ece104f1d45b7d9f9f5585784be7c7","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"651c3a97a2ece104f1d45b7d9f9f5585784be7c7","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161219.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161219.tgz_1482131578949_0.17140014516189694"},"directories":{}},"2.2.0-dev.20161220":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161220","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"4.0.0-dev.3","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"8ae0376e75e4429c57a61e54ddbd5718fba1c0ae","_id":"typescript@2.2.0-dev.20161220","_shasum":"c43cce2d7fdbaeb99bddaf148a9c8efda269da3a","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"c43cce2d7fdbaeb99bddaf148a9c8efda269da3a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161220.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161220.tgz_1482217955822_0.894822426373139"},"directories":{}},"2.1.5-insiders.20161220":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.5-insiders.20161220","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"4.0.0-dev.3","typescript":"^2.1"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e7668b0954a5e43d4bfd578ec93b52f1d1b0f157","_id":"typescript@2.1.5-insiders.20161220","_shasum":"a0916b27ffcb45137d227b1af1c687b1d6edcdf6","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a0916b27ffcb45137d227b1af1c687b1d6edcdf6","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.5-insiders.20161220.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.5-insiders.20161220.tgz_1482281809930_0.2728759376332164"},"directories":{}},"2.2.0-dev.20161221":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161221","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"4.0.0-dev.3","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"1045f3bffb5dd7d5cddd40de22eeda08d8cb95c6","_id":"typescript@2.2.0-dev.20161221","_shasum":"cfe8234a1069df7dd26c958a6e3dc050b9ca3baf","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"cfe8234a1069df7dd26c958a6e3dc050b9ca3baf","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161221.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161221.tgz_1482304413176_0.8108997775707394"},"directories":{}},"2.2.0-dev.20161222":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161222","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"4.0.0-dev.3","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c563e83c992c487b74887acbddc6100192e7b936","_id":"typescript@2.2.0-dev.20161222","_shasum":"8b9557b1acf43a3a589aa5a159ff649fae890264","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8b9557b1acf43a3a589aa5a159ff649fae890264","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161222.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161222.tgz_1482390791917_0.42031432525254786"},"directories":{}},"2.2.0-dev.20161223":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161223","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"4.0.0-dev.3","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"20097d7961de7b7b1924bf8b05a92e5a405fcf85","_id":"typescript@2.2.0-dev.20161223","_shasum":"77327613489667adbb1f7094f1dd002dfcdc4ac4","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"77327613489667adbb1f7094f1dd002dfcdc4ac4","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161223.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161223.tgz_1482477265351_0.9342312722001225"},"directories":{}},"2.2.0-dev.20161224":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161224","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"4.0.0-dev.3","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"20097d7961de7b7b1924bf8b05a92e5a405fcf85","_id":"typescript@2.2.0-dev.20161224","_shasum":"d0ab7b01eb517bd4dad4a93aa027e806cca611a7","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d0ab7b01eb517bd4dad4a93aa027e806cca611a7","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161224.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161224.tgz_1482563632028_0.6224180145654827"},"directories":{}},"2.2.0-dev.20161225":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161225","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"4.0.0-dev.3","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"20097d7961de7b7b1924bf8b05a92e5a405fcf85","_id":"typescript@2.2.0-dev.20161225","_shasum":"97d3a1fbb5317bf596f464730cca69cdba48040c","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"97d3a1fbb5317bf596f464730cca69cdba48040c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161225.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161225.tgz_1482650056742_0.2672628532163799"},"directories":{}},"2.2.0-dev.20161226":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161226","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"4.0.0-dev.3","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"20097d7961de7b7b1924bf8b05a92e5a405fcf85","_id":"typescript@2.2.0-dev.20161226","_shasum":"d459d1ec60ece941c38e87d62e806f20ecef0fa7","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d459d1ec60ece941c38e87d62e806f20ecef0fa7","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161226.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161226.tgz_1482736392971_0.7695751842111349"},"directories":{}},"2.2.0-dev.20161227":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161227","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"f0ad56d86eec4f95270c0f9a93df116623beeadf","_id":"typescript@2.2.0-dev.20161227","_shasum":"c02a4d0656762ca1b8100df03cd42b54374e390b","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"c02a4d0656762ca1b8100df03cd42b54374e390b","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161227.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161227.tgz_1482822785257_0.039209105307236314"},"directories":{}},"2.2.0-dev.20161228":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161228","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"b82fe52ca4e8eb3380fdba97b1c99cbaba9ec6a3","_id":"typescript@2.2.0-dev.20161228","_shasum":"da6b4efb374d6003bd253ed91f8ebb893e8af3b5","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"da6b4efb374d6003bd253ed91f8ebb893e8af3b5","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161228.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161228.tgz_1482909238713_0.26161810476332903"},"directories":{}},"2.2.0-dev.20161229":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161229","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"69e0677ea1630daec111b5129aae609809d511e9","_id":"typescript@2.2.0-dev.20161229","_shasum":"42b45664623455fc138f6d470291d639310efb97","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"42b45664623455fc138f6d470291d639310efb97","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161229.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161229.tgz_1482995544909_0.3763244494330138"},"directories":{}},"2.1.5-insiders.20161229":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.5-insiders.20161229","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"4.0.0-dev.3","typescript":"^2.1"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"32cec588ff26dd563d806d982dc6e0da436cfcb2","_id":"typescript@2.1.5-insiders.20161229","_shasum":"fa0ef18f53a4ff748c0f378bc79b22abd047488e","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"fa0ef18f53a4ff748c0f378bc79b22abd047488e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.5-insiders.20161229.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.5-insiders.20161229.tgz_1483043343767_0.0900745433755219"},"directories":{}},"2.2.0-dev.20161230":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161230","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"69e0677ea1630daec111b5129aae609809d511e9","_id":"typescript@2.2.0-dev.20161230","_shasum":"e65873e2f09694d4e8219e93fb1502a2076c383a","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e65873e2f09694d4e8219e93fb1502a2076c383a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161230.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161230.tgz_1483082010772_0.4904611848760396"},"directories":{}},"2.2.0-dev.20161231":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161231","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"524fa64c8d5fcbd767db383a5fbf0edef4be6363","_id":"typescript@2.2.0-dev.20161231","_shasum":"4c864e06d0f02f0f4ac508182128d1f181727aed","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4c864e06d0f02f0f4ac508182128d1f181727aed","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161231.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161231.tgz_1483168367075_0.6248227499891073"},"directories":{}},"2.2.0-dev.20170101":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170101","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"88c68256e62a1b1b287c5f170d8d1549124ec611","_id":"typescript@2.2.0-dev.20170101","_shasum":"28a941bfd5a114241d4c9025a8d1cde541efcd3b","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"28a941bfd5a114241d4c9025a8d1cde541efcd3b","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170101.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170101.tgz_1483254790937_0.44726586574688554"},"directories":{}},"2.2.0-dev.20170102":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170102","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"88c68256e62a1b1b287c5f170d8d1549124ec611","_id":"typescript@2.2.0-dev.20170102","_shasum":"4f4728112cdf748b6b4b96bf4a1499f956e17300","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4f4728112cdf748b6b4b96bf4a1499f956e17300","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170102.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170102.tgz_1483341194205_0.6682365364395082"},"directories":{}},"2.2.0-dev.20170103":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170103","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"88c68256e62a1b1b287c5f170d8d1549124ec611","_id":"typescript@2.2.0-dev.20170103","_shasum":"0a67020f9b01ca6f97c4f08fc007d314dda1d701","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0a67020f9b01ca6f97c4f08fc007d314dda1d701","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170103.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170103.tgz_1483427581458_0.8395918915048242"},"directories":{}},"2.2.0-dev.20170104":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170104","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"abc9b0dc36515608a86de6574452f2b90e579014","_id":"typescript@2.2.0-dev.20170104","_shasum":"b89abec833ae38f7d9feabf3484c41fe91634174","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"b89abec833ae38f7d9feabf3484c41fe91634174","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170104.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170104.tgz_1483513973310_0.18742245412431657"},"directories":{}},"2.2.0-dev.20170105":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170105","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"58ad85a2747d00cea381187b3ce0290dd6fc4609","_id":"typescript@2.2.0-dev.20170105","_shasum":"43e93d2c506788764333cca13caca53a9c7f8405","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"43e93d2c506788764333cca13caca53a9c7f8405","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170105.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170105.tgz_1483600366198_0.723907069535926"},"directories":{}},"2.2.0-dev.20170106":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170106","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"91af4ae6b3f797eb7911963c22e800f5b96d96ec","_id":"typescript@2.2.0-dev.20170106","_shasum":"cb6b3d95a0faa2b0898cffcfa96e69336679d058","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"cb6b3d95a0faa2b0898cffcfa96e69336679d058","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170106.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170106.tgz_1483686720437_0.23857056605629623"},"directories":{}},"2.2.0-dev.20170107":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170107","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"5b075ff924083d3891e3d34bfe2b4a8b4949665c","_id":"typescript@2.2.0-dev.20170107","_shasum":"d80d9d3fc8a6a97e88a425c9d42d213e071f9a4c","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d80d9d3fc8a6a97e88a425c9d42d213e071f9a4c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170107.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170107.tgz_1483773218011_0.5047358772717416"},"directories":{}},"2.2.0-dev.20170108":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170108","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"5b075ff924083d3891e3d34bfe2b4a8b4949665c","_id":"typescript@2.2.0-dev.20170108","_shasum":"4e5c3611c32695d13b2978db1d9e16e410ea9ee8","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4e5c3611c32695d13b2978db1d9e16e410ea9ee8","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170108.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170108.tgz_1483859636709_0.8535481714643538"},"directories":{}},"2.2.0-dev.20170109":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170109","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"5b075ff924083d3891e3d34bfe2b4a8b4949665c","_id":"typescript@2.2.0-dev.20170109","_shasum":"497f56de9b678629503e017c1524f2534d1ad298","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"497f56de9b678629503e017c1524f2534d1ad298","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170109.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170109.tgz_1483945996990_0.2822617399506271"},"directories":{}},"2.2.0-dev.20170110":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170110","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"46938e0c1f2807b1bb7eca6b76052660328d372e","_id":"typescript@2.2.0-dev.20170110","_shasum":"19b166d88e8574286cc1ea2767fa6cf35a61567c","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"19b166d88e8574286cc1ea2767fa6cf35a61567c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170110.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170110.tgz_1484032445056_0.44486652011983097"},"directories":{}},"2.2.0-dev.20170111":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170111","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"5e6c5ef2f07dfa343434a88bc18efc805a693c9d","_id":"typescript@2.2.0-dev.20170111","_shasum":"3c7d5d598287fc5b47060f229ededfc68ede7058","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"3c7d5d598287fc5b47060f229ededfc68ede7058","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170111.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170111.tgz_1484118774394_0.0945057647768408"},"directories":{}},"2.1.5":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.5","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"4.0.0-dev.3","typescript":"^2.1"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2dbc531cf4cd8758dc0c94465d874d1013d3c5a4","_id":"typescript@2.1.5","_shasum":"6fe9479e00e01855247cea216e7561bafcdbcd4a","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"6fe9479e00e01855247cea216e7561bafcdbcd4a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.5.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.5.tgz_1484179264972_0.1603098378982395"},"directories":{}},"2.2.0-dev.20170112":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170112","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"04da7074f9c7b7fe9bb5a8db1b2d845b9344bfe5","_id":"typescript@2.2.0-dev.20170112","_shasum":"d1cd3481ea7e99a6c3aef81e6daf53326f533bb9","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d1cd3481ea7e99a6c3aef81e6daf53326f533bb9","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170112.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170112.tgz_1484205187777_0.17803838895633817"},"directories":{}},"2.2.0-dev.20170113":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170113","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2711303539dd9af4f0396aa17497e75b5b44f90d","_id":"typescript@2.2.0-dev.20170113","_shasum":"aad3c1cb95c040e63c51a103a834964fccf409f5","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"aad3c1cb95c040e63c51a103a834964fccf409f5","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170113.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170113.tgz_1484291557944_0.823063746560365"},"directories":{}},"2.2.0-dev.20170114":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170114","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d86d85021128ddd45c9347b5bc8e222ece317d6f","_id":"typescript@2.2.0-dev.20170114","_shasum":"cbff198a27561dbaa3c4d85a63d05c2277d8b5de","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"cbff198a27561dbaa3c4d85a63d05c2277d8b5de","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170114.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170114.tgz_1484377977031_0.4164725127629936"},"directories":{}},"2.2.0-dev.20170115":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170115","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c320c884d6f8422dc0bebb0e80d276379e5d5b88","_id":"typescript@2.2.0-dev.20170115","_shasum":"94e92f177079bc7022ab00e700a2270892268bc4","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"94e92f177079bc7022ab00e700a2270892268bc4","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170115.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170115.tgz_1484464356106_0.6945959134027362"},"directories":{}},"2.2.0-dev.20170116":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170116","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e254a09d6ea840672617d63216374287a5779277","_id":"typescript@2.2.0-dev.20170116","_shasum":"768943f755a92760cdcfa5d3860805fae62f5b1d","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"768943f755a92760cdcfa5d3860805fae62f5b1d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170116.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170116.tgz_1484550747556_0.18172956677153707"},"directories":{}},"2.2.0-dev.20170117":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170117","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d6fde0c07fcffce6602195313f119bd8e35ba777","_id":"typescript@2.2.0-dev.20170117","_shasum":"6e8f0a306c3b6d26901321333ba9a7a301150379","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"6e8f0a306c3b6d26901321333ba9a7a301150379","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170117.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170117.tgz_1484637159341_0.1085028750821948"},"directories":{}},"2.2.0-dev.20170118":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170118","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"381960f9eab5c37825f939c42bf375ca61d5b67d","_id":"typescript@2.2.0-dev.20170118","_shasum":"f61747a04c71996d8dfc85cdc5c1f45e6e3f9a55","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f61747a04c71996d8dfc85cdc5c1f45e6e3f9a55","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170118.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170118.tgz_1484723582415_0.04217548295855522"},"directories":{}},"2.2.0-dev.20170119":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170119","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2c48e26f191f73e1a2394ec062df4b7111f97d46","_id":"typescript@2.2.0-dev.20170119","_shasum":"3c0c7657f784ddecf9acd30c415ed665523a77af","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"3c0c7657f784ddecf9acd30c415ed665523a77af","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170119.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170119.tgz_1484809905487_0.3045387309975922"},"directories":{}},"2.2.0-dev.20170120":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170120","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"0a535f0bf7193741e6b4acf5b7dfea88e2d4beca","_id":"typescript@2.2.0-dev.20170120","_shasum":"4729ced2532dfdebc170cbbbc9ea3fb57fa5181f","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4729ced2532dfdebc170cbbbc9ea3fb57fa5181f","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170120.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170120.tgz_1484896341305_0.11423544608987868"},"directories":{}},"2.2.0-dev.20170121":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170121","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"4ee8213dde3a08b29d3add176cae92bdb20c5415","_id":"typescript@2.2.0-dev.20170121","_shasum":"ceda8c8127a0307531d76862b012a2bd918a7f0d","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ceda8c8127a0307531d76862b012a2bd918a7f0d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170121.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170121.tgz_1484982732591_0.99959297478199"},"directories":{}},"2.2.0-dev.20170122":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170122","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"5b9004e1bc24d2bb53de1dd04ba042ed69da45f4","_id":"typescript@2.2.0-dev.20170122","_shasum":"e46aa6050f1af2a37df4eb41304991ded1f4f2c4","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e46aa6050f1af2a37df4eb41304991ded1f4f2c4","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170122.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170122.tgz_1485069121751_0.15194945689290762"},"directories":{}},"2.2.0-dev.20170123":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170123","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"3cf326a8c4e968532cc4cc063fbaea0ed253f335","_id":"typescript@2.2.0-dev.20170123","_shasum":"b9d798e096a31c1ed5d27ea30b1224d3c077e808","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"b9d798e096a31c1ed5d27ea30b1224d3c077e808","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170123.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170123.tgz_1485155499897_0.22202752716839314"},"directories":{}},"2.2.0-dev.20170124":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170124","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"f6ee80c675343d873d5f9d53f9e4ca1f25d3d5ef","_id":"typescript@2.2.0-dev.20170124","_shasum":"56de2ede0427292bdbee86f6863abe6ec8f7efcd","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"56de2ede0427292bdbee86f6863abe6ec8f7efcd","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170124.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170124.tgz_1485241917745_0.6177540123462677"},"directories":{}},"2.2.0-dev.20170125":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170125","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"8144c89c9c63ce1bf90adbb35f366fe2ae821c1f","_id":"typescript@2.2.0-dev.20170125","_shasum":"a0d0cf4ee24405b85e53dbea3e59cd71bd5ae4de","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a0d0cf4ee24405b85e53dbea3e59cd71bd5ae4de","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170125.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170125.tgz_1485328328282_0.31463755993172526"},"directories":{}},"2.2.0-dev.20170126":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170126","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"feb08b8b43b715653d20a34c75a882d75fa3ff94","_id":"typescript@2.2.0-dev.20170126","_shasum":"422ce13f80582465f398d1f2bc7fecc90b89cc99","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"422ce13f80582465f398d1f2bc7fecc90b89cc99","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170126.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170126.tgz_1485414735932_0.8313646414317191"},"directories":{}},"2.2.0-dev.20170127":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170127","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"64dd8065aa2292f46629f6ed976e42ec852d4189","_id":"typescript@2.2.0-dev.20170127","_shasum":"94191ea34e6f53d64a4d0291cc76f7c14417dd54","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"94191ea34e6f53d64a4d0291cc76f7c14417dd54","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170127.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170127.tgz_1485501122464_0.3802980538457632"},"directories":{}},"2.2.0-dev.20170128":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170128","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"aeeff28fd6e7a6b599f8eff084008ac9bdc36d03","_id":"typescript@2.2.0-dev.20170128","_shasum":"5ec0e9bb023a53998281f2372d90f4db058e4949","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5ec0e9bb023a53998281f2372d90f4db058e4949","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170128.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170128.tgz_1485587546324_0.4883508156053722"},"directories":{}},"2.2.0-dev.20170129":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170129","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"aeeff28fd6e7a6b599f8eff084008ac9bdc36d03","_id":"typescript@2.2.0-dev.20170129","_shasum":"e36f7e51ef1d6d9c783540b41b81da258666d0ca","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e36f7e51ef1d6d9c783540b41b81da258666d0ca","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170129.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170129.tgz_1485673922008_0.8512706779874861"},"directories":{}},"2.2.0-dev.20170130":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170130","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"aeeff28fd6e7a6b599f8eff084008ac9bdc36d03","_id":"typescript@2.2.0-dev.20170130","_shasum":"93f4a216242395fd43ac4684c6d7531440a155a5","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"93f4a216242395fd43ac4684c6d7531440a155a5","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170130.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170130.tgz_1485760318339_0.5075052718166262"},"directories":{}},"2.2.0-dev.20170131":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170131","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"445421b68b23a3fcb1a64d9541f31b5e0131ed34","_id":"typescript@2.2.0-dev.20170131","_shasum":"e2c68c5379d94c7970a8a037b97d9910024a487f","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e2c68c5379d94c7970a8a037b97d9910024a487f","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170131.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170131.tgz_1485846742698_0.8980157203041017"},"directories":{}},"2.2.0-dev.20170201":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170201","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"cf20850e79c5bd2b89a1bc486bf2421fff2ec3be","_id":"typescript@2.2.0-dev.20170201","_shasum":"3d66dbb15f2f52e4464ca571179c607140cd86f9","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"3d66dbb15f2f52e4464ca571179c607140cd86f9","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170201.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170201.tgz_1485933127689_0.10152681241743267"},"directories":{}},"2.2.0-dev.20170202":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170202","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"1f92bacdc81e7ae6706ad8776121e1db986a8b27","_id":"typescript@2.2.0-dev.20170202","_shasum":"3a2d9d7506592aea2c9ed461603473f8dd5a15a1","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"3a2d9d7506592aea2c9ed461603473f8dd5a15a1","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170202.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170202.tgz_1486019575162_0.6554185508284718"},"directories":{}},"2.2.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"adedc1953b9a1136b5067f5224a3b4e7cd5b8956","_id":"typescript@2.2.0","_shasum":"626f2fc70087d2480f21ebb12c1888288c8614e3","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"626f2fc70087d2480f21ebb12c1888288c8614e3","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0.tgz_1486061390712_0.39234997518360615"},"directories":{}},"2.2.0-dev.20170203":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170203","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"df643d8d02cc91993fde3d2a801817b78ecaa504","_id":"typescript@2.2.0-dev.20170203","_shasum":"1c31f75ba7a7939596bd756d612c9916c805098f","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"1c31f75ba7a7939596bd756d612c9916c805098f","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170203.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170203.tgz_1486105980243_0.9502690832596272"},"directories":{}},"2.2.0-dev.20170204":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170204","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"501084a93c5dec70da02d2dad1d16d5f84cd3b7e","_id":"typescript@2.2.0-dev.20170204","_shasum":"eb6e934c515862961262ca30e9d0580d7c3dace4","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"eb6e934c515862961262ca30e9d0580d7c3dace4","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170204.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170204.tgz_1486192380815_0.8688694909214973"},"directories":{}},"2.2.0-dev.20170205":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170205","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"501084a93c5dec70da02d2dad1d16d5f84cd3b7e","_id":"typescript@2.2.0-dev.20170205","_shasum":"7a1bd15f57c2e772574adb53da0c49e4f3474701","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"7a1bd15f57c2e772574adb53da0c49e4f3474701","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170205.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170205.tgz_1486278810775_0.738462820649147"},"directories":{}},"2.2.0-dev.20170206":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170206","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"501084a93c5dec70da02d2dad1d16d5f84cd3b7e","_id":"typescript@2.2.0-dev.20170206","_shasum":"b2142f31b8b99bb7a04c558b96f47de87749d7b3","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"b2142f31b8b99bb7a04c558b96f47de87749d7b3","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170206.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170206.tgz_1486365153475_0.25099812215194106"},"directories":{}},"2.2.0-dev.20170207":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170207","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"955b10edf9893b3c471b6d882ff0132dd8d6fbd3","_id":"typescript@2.2.0-dev.20170207","_shasum":"d315d5236a1639db2c727107c1308e257b25b552","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d315d5236a1639db2c727107c1308e257b25b552","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170207.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170207.tgz_1486451596704_0.9667003168724477"},"directories":{}},"2.1.6":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.6","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"4.0.0-dev.3","typescript":"^2.1"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"496e7ab55937c699ffd449960876a1285a7b5cbf","_id":"typescript@2.1.6","_shasum":"40c7e6e9e5da7961b7718b55505f9cac9487a607","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"40c7e6e9e5da7961b7718b55505f9cac9487a607","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.6.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.6.tgz_1486595501310_0.9944379008375108"},"directories":{}},"2.2.0-dev.20170209":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170209","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"de71002c8ea9bf5f70f33c6f0465b548077fc0cc","_id":"typescript@2.2.0-dev.20170209","_shasum":"5e7ce5998a742560be871a5397163b40f7918843","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5e7ce5998a742560be871a5397163b40f7918843","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170209.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170209.tgz_1486624420728_0.42641089321114123"},"directories":{}},"2.2.1-insiders.20170209":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.1-insiders.20170209","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"4.3.0-dev.0","typescript":"^2.2"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d2e28809b1eeade6be1842f963d56ba8393d892c","_id":"typescript@2.2.1-insiders.20170209","_shasum":"1ebe5928668b3c98dd5c6e0d7cfcab7513204422","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"1ebe5928668b3c98dd5c6e0d7cfcab7513204422","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.1-insiders.20170209.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.1-insiders.20170209.tgz_1486680244454_0.8263627483975142"},"directories":{}},"2.2.0-dev.20170210":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170210","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2fc634f46048bb00f1cf27a798761fd70f269ec1","_id":"typescript@2.2.0-dev.20170210","_shasum":"a2977fb63b349434e24945779d3927e20f7dac30","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a2977fb63b349434e24945779d3927e20f7dac30","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170210.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170210.tgz_1486710750301_0.0810329255182296"},"directories":{}},"2.2.0-dev.20170211":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170211","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2fc634f46048bb00f1cf27a798761fd70f269ec1","_id":"typescript@2.2.0-dev.20170211","_shasum":"f25f254d22379d7174692f4337f667998742b4f0","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f25f254d22379d7174692f4337f667998742b4f0","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170211.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170211.tgz_1486797220530_0.29570633405819535"},"directories":{}},"2.2.0-dev.20170212":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170212","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2fc634f46048bb00f1cf27a798761fd70f269ec1","_id":"typescript@2.2.0-dev.20170212","_shasum":"86e333268b5ca7831f69004a00c22e3636f72f23","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"86e333268b5ca7831f69004a00c22e3636f72f23","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170212.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170212.tgz_1486883612578_0.7773494201246649"},"directories":{}},"2.2.0-dev.20170213":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170213","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2fc634f46048bb00f1cf27a798761fd70f269ec1","_id":"typescript@2.2.0-dev.20170213","_shasum":"670305acc0b84cf027540da44012096b67ba8522","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"670305acc0b84cf027540da44012096b67ba8522","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170213.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170213.tgz_1486970011393_0.16446392936632037"},"directories":{}},"2.2.0-dev.20170214":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170214","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"f673f48fad7eaff4dadb09e90d42a321c072a3b0","_id":"typescript@2.2.0-dev.20170214","_shasum":"21270c32330487af0c81575ed846e78467a0688a","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"21270c32330487af0c81575ed846e78467a0688a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170214.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170214.tgz_1487056448710_0.6919095281045884"},"directories":{}},"2.3.0-dev.20170215":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170215","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"9be853fb8ffb312c42b5c736c0e8d19d367333bd","_id":"typescript@2.3.0-dev.20170215","_shasum":"ce51c674741a2320062b433279cccb3242de7d35","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ce51c674741a2320062b433279cccb3242de7d35","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170215.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170215.tgz_1487142822847_0.9743815443944186"},"directories":{}},"2.3.0-dev.20170216":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170216","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"593ee683b91c716d6fd5afaec10370c7b4d01879","_id":"typescript@2.3.0-dev.20170216","_shasum":"24b2d229c84c38f6d6d167112c64dc4dd0d49618","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"24b2d229c84c38f6d6d167112c64dc4dd0d49618","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170216.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170216.tgz_1487229168523_0.8742075513582677"},"directories":{}},"2.2.1-insiders.20170216":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.1-insiders.20170216","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"4.3.0-dev.0","typescript":"^2.2"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"510b384e26a7966e122995d0d60506c742f0be3b","_id":"typescript@2.2.1-insiders.20170216","_shasum":"d738e909e9fdbbb454178ac0f96fb88496628b19","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d738e909e9fdbbb454178ac0f96fb88496628b19","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.1-insiders.20170216.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.1-insiders.20170216.tgz_1487276607312_0.844479345716536"},"directories":{}},"2.3.0-dev.20170217":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170217","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ef25b25c1fb64602f99a6278f24d42c1b6d53d90","_id":"typescript@2.3.0-dev.20170217","_shasum":"92bf04d972a1d130169c1667fddc58a59d9d516c","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"92bf04d972a1d130169c1667fddc58a59d9d516c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170217.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170217.tgz_1487318050221_0.6788658662699163"},"directories":{}},"2.2.1-insiders.20170217":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.1-insiders.20170217","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"4.3.0-dev.0","typescript":"^2.2"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a29e8cf2406dd41aea48be0fb68cde6a2e972564","_id":"typescript@2.2.1-insiders.20170217","_shasum":"4c4dc2537248fd5942e1f971be9a8d250c8e14ca","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4c4dc2537248fd5942e1f971be9a8d250c8e14ca","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.1-insiders.20170217.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.1-insiders.20170217.tgz_1487381656311_0.45682990783825517"},"directories":{}},"2.3.0-dev.20170218":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170218","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2d62245607916af9056c222d1a082b3efc347282","_id":"typescript@2.3.0-dev.20170218","_shasum":"97f737636b9dbd4bbc552941e75b968f03cefdc4","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"97f737636b9dbd4bbc552941e75b968f03cefdc4","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170218.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170218.tgz_1487402020130_0.6244159613270313"},"directories":{}},"2.3.0-dev.20170219":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170219","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2d62245607916af9056c222d1a082b3efc347282","_id":"typescript@2.3.0-dev.20170219","_shasum":"2ff5f00d0ac017bd2aa398fe98a68d45944bb5fc","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"2ff5f00d0ac017bd2aa398fe98a68d45944bb5fc","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170219.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170219.tgz_1487488363817_0.9817882874049246"},"directories":{}},"2.3.0-dev.20170220":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170220","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2d62245607916af9056c222d1a082b3efc347282","_id":"typescript@2.3.0-dev.20170220","_shasum":"15a337e92b40db9d3b51a3293c781c1319c49857","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"15a337e92b40db9d3b51a3293c781c1319c49857","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170220.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170220.tgz_1487574809128_0.2833214891143143"},"directories":{}},"2.3.0-dev.20170221":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170221","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"b4d2b1db0d77bf886aa844d23c198d16ba7b67ae","_id":"typescript@2.3.0-dev.20170221","_shasum":"7bfec654bc2b1aac45b06cd050158232af03e99c","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"7bfec654bc2b1aac45b06cd050158232af03e99c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170221.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170221.tgz_1487661159366_0.4418482293840498"},"directories":{}},"2.3.0-dev.20170222":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170222","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"359823b4beb792092c0a7a1558f9c7134584be1f","_id":"typescript@2.3.0-dev.20170222","_shasum":"76627ef9c2a70b7b08ea13d44378764c3100ae71","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"76627ef9c2a70b7b08ea13d44378764c3100ae71","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170222.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170222.tgz_1487747576470_0.4557544216513634"},"directories":{}},"2.2.1":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.1","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"4.3.0-dev.0","typescript":"^2.2"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a29e8cf2406dd41aea48be0fb68cde6a2e972564","_id":"typescript@2.2.1","_shasum":"4862b662b988a4c8ff691cc7969622d24db76ae9","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"4862b662b988a4c8ff691cc7969622d24db76ae9","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.1.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.1.tgz_1487783888523_0.46052183769643307"},"directories":{}},"2.3.0-dev.20170223":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170223","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"65da012527937a3074c62655d60ee08fee809f7f","_id":"typescript@2.3.0-dev.20170223","_shasum":"286494c36625ea2eb26f963ed205cd9ca5c41447","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"286494c36625ea2eb26f963ed205cd9ca5c41447","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170223.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170223.tgz_1487833942740_0.4773260762449354"},"directories":{}},"2.3.0-dev.20170224":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170224","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2d4b4c9c805a552369eb9a776a9b97cb280371c6","_id":"typescript@2.3.0-dev.20170224","_shasum":"062a2b874bde1dfba6147396188df59994d89332","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"062a2b874bde1dfba6147396188df59994d89332","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170224.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170224.tgz_1487920410372_0.6417732781264931"},"directories":{}},"2.3.0-dev.20170225":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170225","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"5b23dbc9990e1d65b22998ff0e3ef12f8247a110","_id":"typescript@2.3.0-dev.20170225","_shasum":"7d7ca24838afabafb95a2fe50a4578e2d6fb442e","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"7d7ca24838afabafb95a2fe50a4578e2d6fb442e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170225.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170225.tgz_1488006783880_0.5387127101421356"},"directories":{}},"2.3.0-dev.20170226":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170226","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"87d804e4715f6c5bb0cf3693b1da386242e57219","_id":"typescript@2.3.0-dev.20170226","_shasum":"33a79d909668a6491d480c6c95bd6362425bfcd9","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"33a79d909668a6491d480c6c95bd6362425bfcd9","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170226.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170226.tgz_1488093190246_0.2693984794896096"},"directories":{}},"2.3.0-dev.20170227":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170227","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"87d804e4715f6c5bb0cf3693b1da386242e57219","_id":"typescript@2.3.0-dev.20170227","_shasum":"c974c59575acd25dba67c9dec8467e6076e54746","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"c974c59575acd25dba67c9dec8467e6076e54746","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170227.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170227.tgz_1488179583252_0.09349140617996454"},"directories":{}},"2.3.0-dev.20170228":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170228","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"4f1d7a56b904d49e3f545579f99d43a06ad13371","_id":"typescript@2.3.0-dev.20170228","_shasum":"78d59062c0cf8bc64172f6634bda3cda52da0191","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"78d59062c0cf8bc64172f6634bda3cda52da0191","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170228.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170228.tgz_1488266011823_0.5093146003782749"},"directories":{}},"2.3.0-dev.20170301":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170301","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"97965574edadfa09f3171ded366327637afb0deb","_id":"typescript@2.3.0-dev.20170301","_shasum":"f79d0a1162569439544ca8d3f290b5ad7a78e25e","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f79d0a1162569439544ca8d3f290b5ad7a78e25e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170301.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170301.tgz_1488352377974_0.12241558427922428"},"directories":{}},"2.3.0-dev.20170302":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170302","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"5abb8f3caa27e30a99797064b8383c2b9a5887f0","_id":"typescript@2.3.0-dev.20170302","_shasum":"7bd3aa93a032be88b39f7563781338aac939d3f6","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"7bd3aa93a032be88b39f7563781338aac939d3f6","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170302.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170302.tgz_1488438847699_0.35560158547014"},"directories":{}},"2.2.2-insiders.20170302":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.2-insiders.20170302","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"4.3.0-dev.0","typescript":"^2.2"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"f6b17387b63ac60d022ef3a9086498bb1021e1c9","_id":"typescript@2.2.2-insiders.20170302","_shasum":"29cd01fd94467d3fc61f08808edb143ac05dd6cb","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"29cd01fd94467d3fc61f08808edb143ac05dd6cb","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.2-insiders.20170302.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.2-insiders.20170302.tgz_1488486091028_0.7144766061101109"},"directories":{}},"2.3.0-dev.20170303":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170303","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"5abb8f3caa27e30a99797064b8383c2b9a5887f0","_id":"typescript@2.3.0-dev.20170303","_shasum":"a94608c40d62f8675bafe5df7dc78a2a77bb71ba","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a94608c40d62f8675bafe5df7dc78a2a77bb71ba","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170303.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170303.tgz_1488525165279_0.5675947822164744"},"directories":{}},"2.3.0-dev.20170306":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170306","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"b1520345bec020280c3cd8a38fca5f0d43f4761e","_id":"typescript@2.3.0-dev.20170306","_shasum":"1b2af5681473d13950ebc7319f120c607b6b34b4","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"1b2af5681473d13950ebc7319f120c607b6b34b4","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170306.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170306.tgz_1488784360238_0.4072050414979458"},"directories":{}},"2.3.0-dev.20170307":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170307","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"89f43d13e0a4786c99a9b3fb527b7c085ce90330","_id":"typescript@2.3.0-dev.20170307","_shasum":"06536bf8b16b351c0f5ab155233676c459a7f9c9","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"06536bf8b16b351c0f5ab155233676c459a7f9c9","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170307.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170307.tgz_1488870867994_0.35902652982622385"},"directories":{}},"2.3.0-dev.20170308":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170308","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"1bf4f06b2a9548e881c664c7441a388f4e1fdeec","_id":"typescript@2.3.0-dev.20170308","_shasum":"a1b64c39e180369803b2fca08dd086057a1658fa","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a1b64c39e180369803b2fca08dd086057a1658fa","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170308.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170308.tgz_1488957235823_0.7635773809161037"},"directories":{}},"2.3.0-dev.20170310":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170310","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"940d165b0d9b697b32cf0b015b3b680f7bc146bc","_id":"typescript@2.3.0-dev.20170310","_shasum":"eca1f6cfc4c2e2ab5b0531aebb22529c89ec3603","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"eca1f6cfc4c2e2ab5b0531aebb22529c89ec3603","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170310.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170310.tgz_1489130000060_0.7234955036547035"},"directories":{}},"2.3.0-dev.20170311":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170311","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6632e324edbb263bdd699468a92a4f4518fdb9e6","_id":"typescript@2.3.0-dev.20170311","_shasum":"9522446db838650e7b1f056fcbae08a102d6192c","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"9522446db838650e7b1f056fcbae08a102d6192c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170311.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170311.tgz_1489216463061_0.06440871255472302"},"directories":{}},"2.3.0-dev.20170312":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170312","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6632e324edbb263bdd699468a92a4f4518fdb9e6","_id":"typescript@2.3.0-dev.20170312","_shasum":"6a954357d988eacfcfe0c90695b6250b16f8cb75","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"6a954357d988eacfcfe0c90695b6250b16f8cb75","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170312.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170312.tgz_1489302798770_0.14295845618471503"},"directories":{}},"2.3.0-dev.20170313":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170313","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6632e324edbb263bdd699468a92a4f4518fdb9e6","_id":"typescript@2.3.0-dev.20170313","_shasum":"9fe7e4b8c4ee5106ced0dea59e621d403a079969","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"9fe7e4b8c4ee5106ced0dea59e621d403a079969","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170313.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170313.tgz_1489385620806_0.6741911380086094"},"directories":{}},"2.3.0-dev.20170314":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170314","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ea57fbc59f85a7f9f690ea1bc1e1813c7db03508","_id":"typescript@2.3.0-dev.20170314","_shasum":"2cda5cdd31f747b24920d818bf25a7e0ba447f3c","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"2cda5cdd31f747b24920d818bf25a7e0ba447f3c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170314.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170314.tgz_1489472056462_0.24466043477877975"},"directories":{}},"2.3.0-dev.20170315":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170315","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ea57fbc59f85a7f9f690ea1bc1e1813c7db03508","_id":"typescript@2.3.0-dev.20170315","_shasum":"596f0db2388da256dfa1b4cb3fb5da6a18e21aca","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"596f0db2388da256dfa1b4cb3fb5da6a18e21aca","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170315.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170315.tgz_1489558420582_0.8582374423276633"},"directories":{}},"2.3.0-dev.20170316":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170316","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"4b3cd6a1dba38109a3176c5c93f4424507b225db","_id":"typescript@2.3.0-dev.20170316","_shasum":"cb04176ecbc67a93e8c35ea9f4f0400b9e189006","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"cb04176ecbc67a93e8c35ea9f4f0400b9e189006","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170316.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170316.tgz_1489644844075_0.47445191931910813"},"directories":{}},"2.3.0-dev.20170317":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170317","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"595342615b8e9c729626668f3a1eff3c764fb77b","_id":"typescript@2.3.0-dev.20170317","_shasum":"8a3b13aa75b92b2bfb0074dd92a45d8be973a696","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8a3b13aa75b92b2bfb0074dd92a45d8be973a696","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170317.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170317.tgz_1489731311331_0.4602776581887156"},"directories":{}},"2.2.2-insiders.20170317":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.2-insiders.20170317","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"4.3.0-dev.0","typescript":"^2.2"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d89553f63edab8d790e76afdfd4b541551732f6e","_id":"typescript@2.2.2-insiders.20170317","_shasum":"4e671cdbd7706f7b4c1d096081a55b6bee49a979","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4e671cdbd7706f7b4c1d096081a55b6bee49a979","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.2-insiders.20170317.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.2-insiders.20170317.tgz_1489797987145_0.16657975665293634"},"directories":{}},"2.3.0-dev.20170318":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170318","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ac67b94a6ea209760bfc31d9328337a16c41a0c1","_id":"typescript@2.3.0-dev.20170318","_shasum":"23ee34280ddf23a4cef659fbafdf01d463a16e73","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"23ee34280ddf23a4cef659fbafdf01d463a16e73","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170318.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170318.tgz_1489817660573_0.36834536166861653"},"directories":{}},"2.3.0-dev.20170319":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170319","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ac67b94a6ea209760bfc31d9328337a16c41a0c1","_id":"typescript@2.3.0-dev.20170319","_shasum":"8333a9e83d1ea015a64b908d4718ad90532a86f2","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8333a9e83d1ea015a64b908d4718ad90532a86f2","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170319.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170319.tgz_1489904073372_0.6401022975333035"},"directories":{}},"2.3.0-dev.20170320":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170320","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ac67b94a6ea209760bfc31d9328337a16c41a0c1","_id":"typescript@2.3.0-dev.20170320","_shasum":"b95fadf23dd9578e652965d5e529f3d84130dc51","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"b95fadf23dd9578e652965d5e529f3d84130dc51","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170320.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170320.tgz_1489990425049_0.22680562431924045"},"directories":{}},"2.3.0-dev.20170321":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170321","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"b6dfa39ce0b930b38cd391c6148efa8ea3fe960a","_id":"typescript@2.3.0-dev.20170321","_shasum":"91b181a65cb70dc435d24f7fde9a2c3e134199c1","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"91b181a65cb70dc435d24f7fde9a2c3e134199c1","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170321.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170321.tgz_1490076865343_0.545285859843716"},"directories":{}},"2.3.0-dev.20170322":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170322","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"4a1cf5d1828ea1d0f40797022385063140e490f9","_id":"typescript@2.3.0-dev.20170322","_shasum":"73a2250d18d2030931fa8359352d0113e49f5e6a","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"73a2250d18d2030931fa8359352d0113e49f5e6a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170322.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170322.tgz_1490163225415_0.6654169601388276"},"directories":{}},"2.3.0-dev.20170323":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170323","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"aad80ad1380f4db622c4643edf58d8573d9db43c","_id":"typescript@2.3.0-dev.20170323","_shasum":"a2a996e9da2b4c635d914afbe681cfad13ba00ea","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a2a996e9da2b4c635d914afbe681cfad13ba00ea","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170323.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170323.tgz_1490249659289_0.06077407603152096"},"directories":{}},"2.3.0-dev.20170324":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170324","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a9d8df2e5a9486738540cfb90fc42670004a8078","_id":"typescript@2.3.0-dev.20170324","_shasum":"2db07374d873b40863ac435cd4b05f55575b34b1","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"2db07374d873b40863ac435cd4b05f55575b34b1","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170324.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170324.tgz_1490335961898_0.454483937472105"},"directories":{}},"2.3.0-dev.20170325":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170325","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"9e8b3d9c3ba683311fac6306d816137d20a931b3","_id":"typescript@2.3.0-dev.20170325","_shasum":"61333b1de560a4846401eb83688a522826b4dfeb","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"61333b1de560a4846401eb83688a522826b4dfeb","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170325.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170325.tgz_1490422394943_0.17851735767908394"},"directories":{}},"2.3.0-dev.20170326":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170326","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"9e8b3d9c3ba683311fac6306d816137d20a931b3","_id":"typescript@2.3.0-dev.20170326","_shasum":"81995ac5a20e1fc1f18a7abd5ff3bf4ff7f59be0","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"81995ac5a20e1fc1f18a7abd5ff3bf4ff7f59be0","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170326.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170326.tgz_1490508783189_0.6131800184957683"},"directories":{}},"2.3.0-dev.20170327":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170327","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"02e487ac08fac6d3564ae45d1f1f7473ec558a92","_id":"typescript@2.3.0-dev.20170327","_shasum":"1b8e456554bbd1b5caa96157571b8ac76bf0b698","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"1b8e456554bbd1b5caa96157571b8ac76bf0b698","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170327.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170327.tgz_1490595182672_0.10577051434665918"},"directories":{}},"2.2.2":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.2","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"4.3.0-dev.0","typescript":"^2.2"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d89553f63edab8d790e76afdfd4b541551732f6e","_id":"typescript@2.2.2","_shasum":"606022508479b55ffa368b58fee963a03dfd7b0c","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"606022508479b55ffa368b58fee963a03dfd7b0c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.2.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.2.tgz_1490637295228_0.5542608459945768"},"directories":{}},"2.3.0-dev.20170328":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170328","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"0fd0903280d9c5090f18bcc22b7df7ca608857b1","_id":"typescript@2.3.0-dev.20170328","_shasum":"8d08ac18b99ea02fead6999c1be1c07b5bb44132","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8d08ac18b99ea02fead6999c1be1c07b5bb44132","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170328.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170328.tgz_1490681560372_0.8197383997030556"},"directories":{}},"2.3.0-dev.20170329":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170329","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"3ab7c868d97c1d0d4676c775271c7fb5e187be79","_id":"typescript@2.3.0-dev.20170329","_shasum":"29e6132d3003e4b1f5742fadf5854d5b4067719f","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"29e6132d3003e4b1f5742fadf5854d5b4067719f","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170329.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170329.tgz_1490767984306_0.38311975286342204"},"directories":{}},"2.3.0-dev.20170330":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170330","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e298f759c3981c287fb5b26747afebda7a02b226","_id":"typescript@2.3.0-dev.20170330","_shasum":"84b28bd284f7c8f2c4aca69006ffa66ba721d23a","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"84b28bd284f7c8f2c4aca69006ffa66ba721d23a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170330.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170330.tgz_1490854417868_0.6821240275166929"},"directories":{}},"2.3.0-dev.20170331":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170331","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"045998767344d5cd580d9cbcc3d7e1300e614505","_id":"typescript@2.3.0-dev.20170331","_shasum":"969ed460092801745c831b2fc2311ae22aa6b014","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"969ed460092801745c831b2fc2311ae22aa6b014","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170331.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170331.tgz_1490940814528_0.16316868970170617"},"directories":{}},"2.3.0-dev.20170401":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170401","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a62869c81ecd6b1c75f41e2f780ffe2ea178678c","_id":"typescript@2.3.0-dev.20170401","_shasum":"1a0c0429c9f2f286054c13ddad572b8b7280a471","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"1a0c0429c9f2f286054c13ddad572b8b7280a471","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170401.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170401.tgz_1491027268688_0.6173566083889455"},"directories":{}},"2.3.0-dev.20170402":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170402","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a62869c81ecd6b1c75f41e2f780ffe2ea178678c","_id":"typescript@2.3.0-dev.20170402","_shasum":"76088cb4f86bfbeebbb3618d0b27bbf336985411","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"76088cb4f86bfbeebbb3618d0b27bbf336985411","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170402.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170402.tgz_1491113634293_0.7933439661283046"},"directories":{}},"2.3.0-dev.20170403":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170403","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a62869c81ecd6b1c75f41e2f780ffe2ea178678c","_id":"typescript@2.3.0-dev.20170403","_shasum":"12ebbac4fd77098a28426e1e1ab8fa7ed465970d","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"12ebbac4fd77098a28426e1e1ab8fa7ed465970d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170403.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170403.tgz_1491200093316_0.9425895011518151"},"directories":{}},"2.3.0-dev.20170404":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170404","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"7de3539b49623f6c6967744664e143d9671b9d60","_id":"typescript@2.3.0-dev.20170404","_shasum":"73069bb7fef52d5ad4d9c29dbc1d97c241f4cb06","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"73069bb7fef52d5ad4d9c29dbc1d97c241f4cb06","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170404.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170404.tgz_1491286449522_0.11321780132129788"},"directories":{}},"2.3.0-dev.20170405":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170405","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"41fb0aaf6cfe77613876908716e7291518b430df","_id":"typescript@2.3.0-dev.20170405","_shasum":"0455b48e702e6f4a10c2250429476edd421931cc","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0455b48e702e6f4a10c2250429476edd421931cc","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170405.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170405.tgz_1491372865328_0.5709740710444748"},"directories":{}},"2.3.0-dev.20170406":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170406","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"dce7fca83d6bbf0bf72fd0a4237ad152599bd2f7","_id":"typescript@2.3.0-dev.20170406","_shasum":"c3aad80489259749c1d0903e420f3d8464e02b01","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"c3aad80489259749c1d0903e420f3d8464e02b01","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170406.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170406.tgz_1491459261498_0.19047211855649948"},"directories":{}},"2.3.0-dev.20170407":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170407","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"3029b8fe38edde707c016a99b2edfa5b08a6e852","_id":"typescript@2.3.0-dev.20170407","_shasum":"a28c41ab3633eb31ee8d090f7a961947b77c46cc","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a28c41ab3633eb31ee8d090f7a961947b77c46cc","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170407.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170407.tgz_1491545665115_0.7655672621913254"},"directories":{}},"2.3.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"154d25c5fa2e6c7add01b1ebabe40dd31369a65a","_id":"typescript@2.3.0","_shasum":"2e63e09284392bc8158a2444c33e2093795c0418","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"2e63e09284392bc8158a2444c33e2093795c0418","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0.tgz_1491840208657_0.6297718936111778"},"directories":{}},"2.3.0-dev.20170411":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170411","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2ca90b7eb64d208becb0ed1dbae0b625ab21ae4f","_id":"typescript@2.3.0-dev.20170411","_shasum":"cc3ccf87dc0f4c4004a58efd38021fcef68ffb85","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"cc3ccf87dc0f4c4004a58efd38021fcef68ffb85","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170411.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170411.tgz_1491891267807_0.1916531950701028"},"directories":{}},"2.3.0-dev.20170412":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170412","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"397efbde56ea8cf41672cd7844221d6a4aaf0564","_id":"typescript@2.3.0-dev.20170412","_shasum":"d99df60ea6ebaac5e3114c157914c4090917f882","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d99df60ea6ebaac5e3114c157914c4090917f882","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170412.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170412.tgz_1491977647747_0.8821107533294708"},"directories":{}},"2.3.0-dev.20170413":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170413","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"014845a6378916f08d6433b817cc1b250d1695c7","_id":"typescript@2.3.0-dev.20170413","_shasum":"0e7c299b6422ffbfe3923019bbde44f9a4a6a65b","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0e7c299b6422ffbfe3923019bbde44f9a4a6a65b","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170413.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170413.tgz_1492063997156_0.1166076275985688"},"directories":{}},"2.3.1-insiders.20170413":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.1-insiders.20170413","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"339d2eed8e67a61b7e8fd8113f67d7f6fbb75f4a","_id":"typescript@2.3.1-insiders.20170413","_shasum":"c7d00781a218367662441f78a96c365bdad578f6","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"c7d00781a218367662441f78a96c365bdad578f6","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.1-insiders.20170413.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.1-insiders.20170413.tgz_1492123502109_0.158065645955503"},"directories":{}},"2.3.0-dev.20170414":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170414","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d129199f4115229ca5e53d6624f2c8e9b02ce821","_id":"typescript@2.3.0-dev.20170414","_shasum":"21199d254e3436215c1cefc60fc5bd266de573ce","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"21199d254e3436215c1cefc60fc5bd266de573ce","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170414.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170414.tgz_1492150395837_0.8312366106547415"},"directories":{}},"2.3.0-dev.20170415":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170415","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"af64ef8b67ba18b0a9d582aa1187f2681f1d8a51","_id":"typescript@2.3.0-dev.20170415","_shasum":"7db31dbf8004a7476af5ef51e5a427811be25424","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"7db31dbf8004a7476af5ef51e5a427811be25424","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170415.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170415.tgz_1492236804080_0.1122789210639894"},"directories":{}},"2.3.0-dev.20170416":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170416","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"af64ef8b67ba18b0a9d582aa1187f2681f1d8a51","_id":"typescript@2.3.0-dev.20170416","_shasum":"a7fd546221aa85ca10c2fca0ec725989179fa7ce","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a7fd546221aa85ca10c2fca0ec725989179fa7ce","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170416.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170416.tgz_1492323201927_0.9220518998336047"},"directories":{}},"2.3.1-insiders.20170416":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.1-insiders.20170416","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"54b057658373c04a421d02ec84b5008a0f32ff9d","_id":"typescript@2.3.1-insiders.20170416","_shasum":"0725a3eceddf23c0ff8ea8057d7979f1c1c25cec","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0725a3eceddf23c0ff8ea8057d7979f1c1c25cec","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.1-insiders.20170416.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.1-insiders.20170416.tgz_1492386460365_0.5193431144580245"},"directories":{}},"2.3.0-dev.20170417":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170417","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"af64ef8b67ba18b0a9d582aa1187f2681f1d8a51","_id":"typescript@2.3.0-dev.20170417","_shasum":"3c7c3eff1f74ca57f22ee65bd33cda7694f6de05","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"3c7c3eff1f74ca57f22ee65bd33cda7694f6de05","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170417.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170417.tgz_1492409618275_0.6164822389837354"},"directories":{}},"2.3.0-dev.20170418":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170418","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"b038d28ed4490924f115b2268086313f67f9d5a5","_id":"typescript@2.3.0-dev.20170418","_shasum":"e969d9342c5c1efb2e89d0712e583c512a84fc53","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e969d9342c5c1efb2e89d0712e583c512a84fc53","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170418.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170418.tgz_1492496047014_0.9742859634570777"},"directories":{}},"2.3.0-dev.20170419":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170419","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2e43c869b43b40c43eafb8926bee7e32d018cc38","_id":"typescript@2.3.0-dev.20170419","_shasum":"f713796c4462cca1478d073a36036fdbdcc3175c","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f713796c4462cca1478d073a36036fdbdcc3175c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170419.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170419.tgz_1492582437922_0.9829002011101693"},"directories":{}},"2.3.0-dev.20170420":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170420","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"b267492127fcc93b8a11c66991ee32581cc998f5","_id":"typescript@2.3.0-dev.20170420","_shasum":"19405cc5fea53da3fb4b8212c67dfbc6e7ff2d1b","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"19405cc5fea53da3fb4b8212c67dfbc6e7ff2d1b","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170420.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170420.tgz_1492668892628_0.037822855869308114"},"directories":{}},"2.3.1-insiders.20170420":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.1-insiders.20170420","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"54b5635d4e01f9fbe5946e1bcadc264d5b9b0826","_id":"typescript@2.3.1-insiders.20170420","_shasum":"bdbed7b2ba60b4cad94685cdbcf28983f376ea14","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"bdbed7b2ba60b4cad94685cdbcf28983f376ea14","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.1-insiders.20170420.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.1-insiders.20170420.tgz_1492727634757_0.7956692227162421"},"directories":{}},"2.3.0-dev.20170421":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170421","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"8534b430beff7f122091d19d2536b5cc798860ce","_id":"typescript@2.3.0-dev.20170421","_shasum":"fe00e5e7362e3ab359e89822b41931557424937a","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"fe00e5e7362e3ab359e89822b41931557424937a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170421.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170421.tgz_1492755278448_0.1750998159404844"},"directories":{}},"2.3.0-dev.20170422":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170422","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a1a2006074a01ca0b75b08294377cc52302e3e71","_id":"typescript@2.3.0-dev.20170422","_shasum":"d510155a0672d13bff6a327edce13f0697ba3858","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d510155a0672d13bff6a327edce13f0697ba3858","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170422.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170422.tgz_1492841571700_0.3049152474850416"},"directories":{}},"2.3.0-dev.20170423":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170423","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a1a2006074a01ca0b75b08294377cc52302e3e71","_id":"typescript@2.3.0-dev.20170423","_shasum":"c65b643314d2e7aa607718f3d59da2059f01fabe","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"c65b643314d2e7aa607718f3d59da2059f01fabe","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170423.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170423.tgz_1492928040947_0.13977562775835395"},"directories":{}},"2.3.0-dev.20170424":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170424","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a1a2006074a01ca0b75b08294377cc52302e3e71","_id":"typescript@2.3.0-dev.20170424","_shasum":"aecc55e12cf4d27abab9387eab48b8d98ebb002a","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"aecc55e12cf4d27abab9387eab48b8d98ebb002a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170424.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170424.tgz_1493014412551_0.7090106357354671"},"directories":{}},"2.3.0-dev.20170425":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170425","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"da5fd936e6db8de4aafe3399761a58c390189d68","_id":"typescript@2.3.0-dev.20170425","_shasum":"75bb5c53d12760c02603bf1edea6dc451a725c26","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"75bb5c53d12760c02603bf1edea6dc451a725c26","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170425.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170425.tgz_1493100824053_0.011530429823324084"},"directories":{}},"2.3.1-insiders.20170425":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.1-insiders.20170425","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"8a85f4a61ea200ffdd35113b0fca77a901c5be84","_id":"typescript@2.3.1-insiders.20170425","_shasum":"edb0eb21c73492f6ac5bee6abd50858b77926160","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"edb0eb21c73492f6ac5bee6abd50858b77926160","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.1-insiders.20170425.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.1-insiders.20170425.tgz_1493151536666_0.8746582888998091"},"directories":{}},"2.3.1-insiders.20170425.1":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.1-insiders.20170425.1","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"47e55697788261526237d694d8bdc11a99b80f37","_id":"typescript@2.3.1-insiders.20170425.1","_shasum":"fd44d9c0d2487026bdf694042a27cfa2570c13cc","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"fd44d9c0d2487026bdf694042a27cfa2570c13cc","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.1-insiders.20170425.1.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.1-insiders.20170425.1.tgz_1493161017864_0.9299850440584123"},"directories":{}},"2.3.0-dev.20170426":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170426","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6756e3e44c3b21d021a7542b63f2de84b65695c4","_id":"typescript@2.3.0-dev.20170426","_shasum":"d0cb8b4263dfe65363f2b2c4b6ab12182b586e68","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d0cb8b4263dfe65363f2b2c4b6ab12182b586e68","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170426.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170426.tgz_1493187219539_0.7928366877604276"},"directories":{}},"2.4.0-dev.20170427":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170427","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"441d76206578db4069c030b173ae660137532764","_id":"typescript@2.4.0-dev.20170427","_shasum":"be25af61b8fb909b0c9e694d85e2efd0ad490da1","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"be25af61b8fb909b0c9e694d85e2efd0ad490da1","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170427.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.4.0-dev.20170427.tgz_1493273658002_0.3647042296361178"},"directories":{}},"2.3.1":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.1","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"47e55697788261526237d694d8bdc11a99b80f37","_id":"typescript@2.3.1","_shasum":"e3361fb395c6c3f9c69faeeabc9503f8bdecaea1","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"e3361fb395c6c3f9c69faeeabc9503f8bdecaea1","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.1.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.1.tgz_1493308925365_0.5768524957820773"},"directories":{}},"2.4.0-dev.20170428":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170428","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"3d23b9c15a2c2f234696fb025df3ca40de4f3d20","_id":"typescript@2.4.0-dev.20170428","_shasum":"b522f4006066f580652f520362b92f76e111d447","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"b522f4006066f580652f520362b92f76e111d447","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170428.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.4.0-dev.20170428.tgz_1493360015510_0.3306410457007587"},"directories":{}},"2.3.2":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.2","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d1a202dca63cf747791048e1ed4b8ffe0efbf601","_id":"typescript@2.3.2","_shasum":"f0f045e196f69a72f06b25fd3bd39d01c3ce9984","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"f0f045e196f69a72f06b25fd3bd39d01c3ce9984","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.2.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.2.tgz_1493417999844_0.5394609735812992"},"directories":{}},"2.4.0-dev.20170429":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170429","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"7080c4155b2c6cc69c5dae3f312d720d434da3a3","_id":"typescript@2.4.0-dev.20170429","_shasum":"f37349f882a02d230ddca8c00a7ae90d3e6494d1","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f37349f882a02d230ddca8c00a7ae90d3e6494d1","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170429.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.4.0-dev.20170429.tgz_1493446433360_0.4333729138597846"},"directories":{}},"2.4.0-dev.20170430":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170430","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"7080c4155b2c6cc69c5dae3f312d720d434da3a3","_id":"typescript@2.4.0-dev.20170430","_shasum":"f3a077c42ae6b39e136b194aa379e5a0c0504d97","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f3a077c42ae6b39e136b194aa379e5a0c0504d97","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170430.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.4.0-dev.20170430.tgz_1493532833741_0.16693749744445086"},"directories":{}},"2.4.0-dev.20170501":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170501","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"7080c4155b2c6cc69c5dae3f312d720d434da3a3","_id":"typescript@2.4.0-dev.20170501","_shasum":"985f875d2576282fa31745fd9a37aca4f35a55a3","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"985f875d2576282fa31745fd9a37aca4f35a55a3","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170501.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.4.0-dev.20170501.tgz_1493619255846_0.21991519257426262"},"directories":{}},"2.4.0-dev.20170502":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170502","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"1db4f96fd14fc3de5ae3704e925afd6474cfb8f5","_id":"typescript@2.4.0-dev.20170502","_shasum":"330a18e538dc07c74ad20c1175409447b6f6ea4a","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"330a18e538dc07c74ad20c1175409447b6f6ea4a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170502.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.4.0-dev.20170502.tgz_1493705647172_0.7484273998998106"},"directories":{}},"2.4.0-dev.20170503":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170503","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"78df75426f95086dbaa5f10f296ba249c81ce854","_id":"typescript@2.4.0-dev.20170503","_shasum":"9d570bd4fe62fb974fe1a0985ba1eec266b3282e","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"9d570bd4fe62fb974fe1a0985ba1eec266b3282e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170503.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.4.0-dev.20170503.tgz_1493792014937_0.27708687516860664"},"directories":{}},"2.4.0-dev.20170504":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170504","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e1c97e104fd555547bf9a5243bfdd2178fba6f06","_id":"typescript@2.4.0-dev.20170504","_shasum":"339cd61ac33be86b03d26f1f2a030d1634e2d617","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"339cd61ac33be86b03d26f1f2a030d1634e2d617","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170504.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.4.0-dev.20170504.tgz_1493878447814_0.8768008411861956"},"directories":{}},"2.4.0-dev.20170505":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170505","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"96aca4c7d090ed0842bc464c3ab683400f9679ef","_id":"typescript@2.4.0-dev.20170505","_shasum":"0034ab8d60ef1648362349b22cd1060e1cf3c125","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0034ab8d60ef1648362349b22cd1060e1cf3c125","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170505.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.4.0-dev.20170505.tgz_1493964844818_0.6065928242169321"},"directories":{}},"2.4.0-dev.20170506":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170506","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"83da3268ed6b6a0a316dcc76be9c5f4fa03e6421","_id":"typescript@2.4.0-dev.20170506","_shasum":"5be7245d27dde43b1e1c9a18cb7c88890a41499c","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5be7245d27dde43b1e1c9a18cb7c88890a41499c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170506.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.4.0-dev.20170506.tgz_1494051262617_0.6603467997629195"},"directories":{}},"2.4.0-dev.20170507":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170507","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"83da3268ed6b6a0a316dcc76be9c5f4fa03e6421","_id":"typescript@2.4.0-dev.20170507","_shasum":"f0ab1103e60ac6a951f3463cee707d902da489e4","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f0ab1103e60ac6a951f3463cee707d902da489e4","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170507.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.4.0-dev.20170507.tgz_1494137639689_0.22025651903823018"},"directories":{}},"2.4.0-dev.20170508":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170508","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c39a6835048d68977076e558d78653a5226d07af","_id":"typescript@2.4.0-dev.20170508","_shasum":"66c776281eaf64a1ded0291cd66d695ee39cbcea","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"66c776281eaf64a1ded0291cd66d695ee39cbcea","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170508.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.4.0-dev.20170508.tgz_1494224027126_0.15943677094765007"},"directories":{}},"2.4.0-dev.20170509":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170509","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"cb723cf1dcf6a595f3777080352fae0ddac10746","_id":"typescript@2.4.0-dev.20170509","_shasum":"684374cfe46cff71bff67bf18e33de28a62d879d","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"684374cfe46cff71bff67bf18e33de28a62d879d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170509.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.4.0-dev.20170509.tgz_1494310427588_0.7747447807341814"},"directories":{}},"2.4.0-dev.20170510":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170510","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"17375989359a7392e468668632661fee4302d1a6","_id":"typescript@2.4.0-dev.20170510","_shasum":"e4db6af2e02ac01972e6afe3ae3ab51a94bb0ea1","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e4db6af2e02ac01972e6afe3ae3ab51a94bb0ea1","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170510.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.4.0-dev.20170510.tgz_1494396887962_0.9603664940223098"},"directories":{}},"2.4.0-dev.20170511":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170511","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"066bb16173a9f07197f9d205d56763645c31080f","_id":"typescript@2.4.0-dev.20170511","_shasum":"dd23bd45a7cd8d53fa9102d966a657bbf7e30a60","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"dd23bd45a7cd8d53fa9102d966a657bbf7e30a60","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170511.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.4.0-dev.20170511.tgz_1494483246812_0.7860567506868392"},"directories":{}},"2.4.0-dev.20170512":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170512","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a12ec1af438d2769064442dfb675c8eef2386520","_id":"typescript@2.4.0-dev.20170512","_shasum":"95b3c58c0f93123060f15a3bcba749f2e153fd9e","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"95b3c58c0f93123060f15a3bcba749f2e153fd9e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170512.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.4.0-dev.20170512.tgz_1494569680836_0.2586050610989332"},"directories":{}},"2.3.3-insiders.20170512":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.3-insiders.20170512","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"8534a5abfcc53c71b028ff6e3bc0ab2fbf3b98c8","_id":"typescript@2.3.3-insiders.20170512","_shasum":"6125088311f1b7f9ff6ba73e0b5380a6c85dd2ce","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"6125088311f1b7f9ff6ba73e0b5380a6c85dd2ce","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.3-insiders.20170512.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.3-insiders.20170512.tgz_1494619465150_0.9099700697697699"},"directories":{}},"2.4.0-dev.20170513":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170513","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"50e2912cd24d197c1303164eb88fc43c022605c2","_id":"typescript@2.4.0-dev.20170513","_shasum":"8eada73ab61821276c2c760d99b2579b7f7c8605","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8eada73ab61821276c2c760d99b2579b7f7c8605","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170513.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.4.0-dev.20170513.tgz_1494656036940_0.9074124610051513"},"directories":{}},"2.4.0-dev.20170514":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170514","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"50e2912cd24d197c1303164eb88fc43c022605c2","_id":"typescript@2.4.0-dev.20170514","_shasum":"8d42a700d773711aa944fbb8b84d43ec42d2fe4a","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8d42a700d773711aa944fbb8b84d43ec42d2fe4a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170514.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.4.0-dev.20170514.tgz_1494742467393_0.8630482391454279"},"directories":{}},"2.4.0-dev.20170515":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170515","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"50e2912cd24d197c1303164eb88fc43c022605c2","_id":"typescript@2.4.0-dev.20170515","_shasum":"8c85659e0a86242094fdd1f0ba18df4dcfa991c2","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8c85659e0a86242094fdd1f0ba18df4dcfa991c2","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170515.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.4.0-dev.20170515.tgz_1494828816950_0.7814069930464029"},"directories":{}},"2.4.0-dev.20170516":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170516","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d51e467238db9229ca0620607067c083aee07cc3","_id":"typescript@2.4.0-dev.20170516","_shasum":"1c79263c784287083616fd7ea88cd74309a8a93e","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"1c79263c784287083616fd7ea88cd74309a8a93e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170516.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.4.0-dev.20170516.tgz_1494915368305_0.6557889515534043"},"directories":{}},"2.4.0-dev.20170517":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170517","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ebcbd8f82883a0d7af999c80e669af527f8c2b8b","_id":"typescript@2.4.0-dev.20170517","_shasum":"9ffbd0637e461a2039d44cb6bdb58128a9cabf3c","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"9ffbd0637e461a2039d44cb6bdb58128a9cabf3c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170517.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.4.0-dev.20170517.tgz_1495001686017_0.04209134099073708"},"directories":{}},"2.4.0-dev.20170518":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170518","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"5e20c1ce11b7be240868fd14d350ea5f40f61a9c","_id":"typescript@2.4.0-dev.20170518","_shasum":"304d0a8209836bd9e6e361ee287c6699ba8fd60f","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"304d0a8209836bd9e6e361ee287c6699ba8fd60f","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170518.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.4.0-dev.20170518.tgz_1495088104843_0.23690050467848778"},"directories":{}},"2.4.0-dev.20170519":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170519","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ada39c506d2c5e1d2feaea4b3e2f0fb414537955","_id":"typescript@2.4.0-dev.20170519","_shasum":"f25373f3e9497843ee90718490f6a721b61ac857","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f25373f3e9497843ee90718490f6a721b61ac857","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170519.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.4.0-dev.20170519.tgz_1495174412134_0.9675724904518574"},"directories":{}},"2.3.3":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.3","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e2cc27bec226eabaf52bd05d4ea3b44db115e463","_id":"typescript@2.3.3","_shasum":"9639f3c3b40148e8ca97fe08a51dd1891bb6be22","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"9639f3c3b40148e8ca97fe08a51dd1891bb6be22","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.3.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.3.3.tgz_1495486124091_0.5831131974700838"},"directories":{}},"2.4.0-dev.20170523":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170523","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"567b10d71c0901b8e6127fb4987a018aad37da29","_id":"typescript@2.4.0-dev.20170523","_shasum":"6ca100fbd11ceeaab256232dbb960da8ec4c18b1","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"6ca100fbd11ceeaab256232dbb960da8ec4c18b1","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170523.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.0-dev.20170523.tgz_1495520070595_0.4316156262066215"},"directories":{}},"2.4.0-dev.20170524":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170524","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"b4ee6b19aac530a208ea2d448b83fbcb61e0f4b7","_id":"typescript@2.4.0-dev.20170524","_shasum":"f818a6ae2237ffa33aae7b8ed728c6b45c7566ce","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f818a6ae2237ffa33aae7b8ed728c6b45c7566ce","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170524.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.0-dev.20170524.tgz_1495606458418_0.5361861803103238"},"directories":{}},"2.4.0-dev.20170525":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170525","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ebbfca98479cf553cbb4f2483cb42749e0445706","_id":"typescript@2.4.0-dev.20170525","_shasum":"e16405f2e73ea44e19cdab26c503e048bc2f33b1","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e16405f2e73ea44e19cdab26c503e048bc2f33b1","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170525.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.0-dev.20170525.tgz_1495692835269_0.2893072769511491"},"directories":{}},"2.4.0-dev.20170526":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170526","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"068256b8b080ee1b0e9c376a27ccfcd45d9a2fd1","_id":"typescript@2.4.0-dev.20170526","_shasum":"54a5f19be127c3b654e056336f2144b26a234702","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"54a5f19be127c3b654e056336f2144b26a234702","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170526.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.0-dev.20170526.tgz_1495779247431_0.28441603551618755"},"directories":{}},"2.4.0-dev.20170527":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170527","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"bcf84f49589eb00decd0567efcd6d9eb789d5452","_id":"typescript@2.4.0-dev.20170527","_shasum":"5820981349f3fdac44f7c74702888ad66c0dae09","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5820981349f3fdac44f7c74702888ad66c0dae09","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170527.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.0-dev.20170527.tgz_1495865732654_0.5217105017509311"},"directories":{}},"2.4.0-dev.20170528":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170528","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"bcf84f49589eb00decd0567efcd6d9eb789d5452","_id":"typescript@2.4.0-dev.20170528","_shasum":"39c710d0d36dbe0a6f3b285a29a5ca912f33269a","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"39c710d0d36dbe0a6f3b285a29a5ca912f33269a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170528.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.0-dev.20170528.tgz_1495952126366_0.9542548106983304"},"directories":{}},"2.4.0-dev.20170529":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170529","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"bcf84f49589eb00decd0567efcd6d9eb789d5452","_id":"typescript@2.4.0-dev.20170529","_shasum":"602da5a441a922dbc652272b49241096a780030b","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"602da5a441a922dbc652272b49241096a780030b","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170529.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.0-dev.20170529.tgz_1496038484122_0.7580587721895427"},"directories":{}},"2.4.0-dev.20170530":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170530","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"bcf84f49589eb00decd0567efcd6d9eb789d5452","_id":"typescript@2.4.0-dev.20170530","_shasum":"7191e199debb180eaeff543e12a74cf0f63da024","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"7191e199debb180eaeff543e12a74cf0f63da024","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170530.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.0-dev.20170530.tgz_1496124908301_0.32724879309535027"},"directories":{}},"2.3.4":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.4","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"^2.3.3"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"1a579d929f1d0ee4d45de7cee505970a24a40cc7","_id":"typescript@2.3.4","_shasum":"3d38321828231e434f287514959c37a82b629f42","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"3d38321828231e434f287514959c37a82b629f42","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.4.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.3.4.tgz_1496178348815_0.7538054259493947"},"directories":{}},"2.4.0-dev.20170531":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170531","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"1cc860d88ccaf4008185530eab2f3c20d89be4b4","_id":"typescript@2.4.0-dev.20170531","_shasum":"2fe549be0e5e6af9d0159fc20c4de84ba0bd7a2d","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"2fe549be0e5e6af9d0159fc20c4de84ba0bd7a2d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170531.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.0-dev.20170531.tgz_1496211329078_0.46013076952658594"},"directories":{}},"2.4.0-dev.20170601":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170601","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"928da675aca56fc0d9eab42e7fe6fa12859d3849","_id":"typescript@2.4.0-dev.20170601","_shasum":"9bac807d61a6a02340264ebaaefca08606d22b61","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"9bac807d61a6a02340264ebaaefca08606d22b61","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170601.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.0-dev.20170601.tgz_1496297695557_0.7038231657352298"},"directories":{}},"2.4.0-dev.20170602":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170602","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"b62e1b57455562da9b8e1d2ab102753400820c87","_id":"typescript@2.4.0-dev.20170602","_shasum":"ad5276b2038d3526b6664dde3eec25a2d80fb568","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ad5276b2038d3526b6664dde3eec25a2d80fb568","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170602.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.0-dev.20170602.tgz_1496384203814_0.552362612914294"},"directories":{}},"2.4.0-dev.20170603":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170603","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"5ea8466103747fe38e846999577bbb0f2ce1b553","_id":"typescript@2.4.0-dev.20170603","_shasum":"206f9b2b4941d894f9f7f78560bebb2a8a5ce0d9","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"206f9b2b4941d894f9f7f78560bebb2a8a5ce0d9","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170603.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.0-dev.20170603.tgz_1496470543921_0.6570289363153279"},"directories":{}},"2.4.0-dev.20170604":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170604","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"5ea8466103747fe38e846999577bbb0f2ce1b553","_id":"typescript@2.4.0-dev.20170604","_shasum":"958dd881a1237fa98210a0183dc9e36bf2d55e81","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"958dd881a1237fa98210a0183dc9e36bf2d55e81","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170604.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.0-dev.20170604.tgz_1496556927105_0.20389424357563257"},"directories":{}},"2.4.0-dev.20170605":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170605","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a76b4b1f28ec4c6af5aaaca092116691af89962e","_id":"typescript@2.4.0-dev.20170605","_shasum":"3784b5edb80bf030cac673f3326852b5306d2467","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"3784b5edb80bf030cac673f3326852b5306d2467","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170605.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.0-dev.20170605.tgz_1496643296641_0.2915412576403469"},"directories":{}},"2.4.0-dev.20170606":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170606","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a6e1cedfd7d9fe423019a53980668612bf14bfa0","_id":"typescript@2.4.0-dev.20170606","_shasum":"ba4564118523aa6de4d1ca514d9911e78e051f46","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ba4564118523aa6de4d1ca514d9911e78e051f46","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170606.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.0-dev.20170606.tgz_1496729715025_0.2007577084004879"},"directories":{}},"2.4.0-dev.20170607":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170607","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6007eb7dfb816cf2d021f0057cda2dd1c62b352b","_id":"typescript@2.4.0-dev.20170607","_shasum":"5286a741bb5df1c4425c1b107fb3efa95ed35ce8","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5286a741bb5df1c4425c1b107fb3efa95ed35ce8","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170607.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.0-dev.20170607.tgz_1496816083540_0.852469478501007"},"directories":{}},"2.4.0-dev.20170608":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170608","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"158a6371e934a173a65d7524d99d22cf48799308","_id":"typescript@2.4.0-dev.20170608","_shasum":"a6e7eff5ec3ba9f43eb10907b2d1bda4326bb65a","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a6e7eff5ec3ba9f43eb10907b2d1bda4326bb65a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170608.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.0-dev.20170608.tgz_1496902510265_0.803620767313987"},"directories":{}},"2.4.0-dev.20170609":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170609","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"0d36d0e39fc9b9833a61b51d66be1f762fa8f454","_id":"typescript@2.4.0-dev.20170609","_shasum":"17dc560bf9817e27d002ed49330d5421487203d5","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"17dc560bf9817e27d002ed49330d5421487203d5","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170609.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.0-dev.20170609.tgz_1496988882960_0.277833839179948"},"directories":{}},"2.4.0-dev.20170610":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170610","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"09321b3834af09d7ae55ee86c7664850f189a708","_id":"typescript@2.4.0-dev.20170610","_shasum":"95d03a7c8ae3fbdd24c981e4a2d86c88985716ad","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"95d03a7c8ae3fbdd24c981e4a2d86c88985716ad","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170610.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.0-dev.20170610.tgz_1497075087607_0.27730330103076994"},"directories":{}},"2.4.0-dev.20170611":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170611","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a404edae384f758e604a9457a9476de613436b68","_id":"typescript@2.4.0-dev.20170611","_shasum":"fc5064e14705c15f0dbad9b9051e3a093b684285","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"fc5064e14705c15f0dbad9b9051e3a093b684285","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170611.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.0-dev.20170611.tgz_1497161884706_0.37688726815395057"},"directories":{}},"2.4.0-dev.20170612":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170612","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a404edae384f758e604a9457a9476de613436b68","_id":"typescript@2.4.0-dev.20170612","_shasum":"c81152dac3d4a2962dfc128a8d87cf7873ecb284","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"c81152dac3d4a2962dfc128a8d87cf7873ecb284","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170612.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.0-dev.20170612.tgz_1497248288643_0.08571731275878847"},"directories":{}},"2.4.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"14fa6ac8eb5a8aed75865ee3a5a9f7caf6353aa2","_id":"typescript@2.4.0","_shasum":"aef5a8d404beba36ad339abf079ddddfffba86dd","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"aef5a8d404beba36ad339abf079ddddfffba86dd","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.0.tgz_1497295633780_0.158932140795514"},"directories":{}},"2.5.0-dev.20170613":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170613","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"1d0087dd2d04e48e52f08c85e0489af6e683e56c","_id":"typescript@2.5.0-dev.20170613","_shasum":"0819ffc7be1617b10728154dba65568ec454fd12","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0819ffc7be1617b10728154dba65568ec454fd12","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170613.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170613.tgz_1497334606000_0.8287351259496063"},"directories":{}},"2.5.0-dev.20170614":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170614","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"fbe002a59534a522330d047b367409d57d3fc97d","_id":"typescript@2.5.0-dev.20170614","_shasum":"eb77ed212a5e49ebc8392ba0a95713ef87d9f6f1","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"eb77ed212a5e49ebc8392ba0a95713ef87d9f6f1","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170614.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170614.tgz_1497421009104_0.2152184033766389"},"directories":{}},"2.4.1-insiders.20170614":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.1-insiders.20170614","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"^2.4"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ed9cde9845cdbdc58ae40077ca59b436a4765c60","_id":"typescript@2.4.1-insiders.20170614","_shasum":"4f12ed67ba4230a9c0c03c30c46345e7cf585087","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"4f12ed67ba4230a9c0c03c30c46345e7cf585087","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.1-insiders.20170614.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.1-insiders.20170614.tgz_1497484895443_0.7764965672977269"},"directories":{}},"2.5.0-dev.20170615":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170615","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"26ab0cd138cb4570ac80b2355c562bb39cb294a4","_id":"typescript@2.5.0-dev.20170615","_shasum":"30babe46483cb1ec742c397e2c9910532cb145a4","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"30babe46483cb1ec742c397e2c9910532cb145a4","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170615.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170615.tgz_1497507288722_0.48306851112283766"},"directories":{}},"2.4.1-insiders.20170615":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.1-insiders.20170615","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"^2.4"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"0968ed97ad4eeb27f9417d071ca8cf1c521ebb56","_id":"typescript@2.4.1-insiders.20170615","_shasum":"1cf1dfa212b1ecf557a1192525633f1966b21daf","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"1cf1dfa212b1ecf557a1192525633f1966b21daf","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.1-insiders.20170615.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.1-insiders.20170615.tgz_1497568087897_0.27685667341575027"},"directories":{}},"2.5.0-dev.20170616":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170616","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"31653de3c391e08f3f326abc77ede73532c42bd9","_id":"typescript@2.5.0-dev.20170616","_shasum":"6bf9b32b28c1cb181f45affcd51d057b97c2867e","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"6bf9b32b28c1cb181f45affcd51d057b97c2867e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170616.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170616.tgz_1497593548188_0.6918158680200577"},"directories":{}},"2.5.0-dev.20170617":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170617","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a2776648cd48d4937b076fb8b3e935d3d5fb27e1","_id":"typescript@2.5.0-dev.20170617","_shasum":"5c72d3d4ea278f8db662f513c6911cd31378f024","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5c72d3d4ea278f8db662f513c6911cd31378f024","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170617.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170617.tgz_1497680008788_0.029210101114585996"},"directories":{}},"2.5.0-dev.20170618":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170618","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a2776648cd48d4937b076fb8b3e935d3d5fb27e1","_id":"typescript@2.5.0-dev.20170618","_shasum":"e94cf09b2048705026964dcb20dc0d83e90581ab","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e94cf09b2048705026964dcb20dc0d83e90581ab","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170618.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170618.tgz_1497766378237_0.06250596581958234"},"directories":{}},"2.5.0-dev.20170619":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170619","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a2776648cd48d4937b076fb8b3e935d3d5fb27e1","_id":"typescript@2.5.0-dev.20170619","_shasum":"6f473787affba5252601081cc22caaed0d8fc9e6","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"6f473787affba5252601081cc22caaed0d8fc9e6","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170619.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170619.tgz_1497852763394_0.7942032963037491"},"directories":{}},"2.5.0-dev.20170621":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170621","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"f1fb1b9ed94b8880f48cfcbb40f6117b14c44831","_id":"typescript@2.5.0-dev.20170621","_shasum":"e735c4d23386fd1b31006608d9525ad97729f30b","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e735c4d23386fd1b31006608d9525ad97729f30b","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170621.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170621.tgz_1498025629869_0.48150102607905865"},"directories":{}},"2.5.0-dev.20170622":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170622","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"f1fb1b9ed94b8880f48cfcbb40f6117b14c44831","_id":"typescript@2.5.0-dev.20170622","_shasum":"bacc72fd035603f5be0b6a4e0d3e38f0624fecfe","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"bacc72fd035603f5be0b6a4e0d3e38f0624fecfe","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170622.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170622.tgz_1498111963251_0.7094265660271049"},"directories":{}},"2.5.0-dev.20170623":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170623","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6a111928b4dd40144b2d091016175ebcf5b65cf1","_id":"typescript@2.5.0-dev.20170623","_shasum":"b52cb8bc008e3e23801f32599eee608c9b3e7e15","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"b52cb8bc008e3e23801f32599eee608c9b3e7e15","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170623.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170623.tgz_1498198395801_0.08560115844011307"},"directories":{}},"2.5.0-dev.20170624":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170624","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"fd22a88abcbca57c3a2961955537904481c9c62b","_id":"typescript@2.5.0-dev.20170624","_shasum":"21fe9e20cb239bea79f2a945330009b646bf6112","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"21fe9e20cb239bea79f2a945330009b646bf6112","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170624.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170624.tgz_1498285047483_0.8907331405207515"},"directories":{}},"2.5.0-dev.20170625":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170625","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"fd22a88abcbca57c3a2961955537904481c9c62b","_id":"typescript@2.5.0-dev.20170625","_shasum":"86e3b7242a8f1973c02b79cc03886e7b4166c8a7","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"86e3b7242a8f1973c02b79cc03886e7b4166c8a7","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170625.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170625.tgz_1498371252336_0.1582546541467309"},"directories":{}},"2.5.0-dev.20170626":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170626","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"fd22a88abcbca57c3a2961955537904481c9c62b","_id":"typescript@2.5.0-dev.20170626","_shasum":"138dcf6f3e1885b656bcd6445305f3df9e0039b5","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"138dcf6f3e1885b656bcd6445305f3df9e0039b5","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170626.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170626.tgz_1498457575110_0.5473527244757861"},"directories":{}},"2.5.0-dev.20170627":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170627","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"aeb5264b74658c976165699db1489bdc65675533","_id":"typescript@2.5.0-dev.20170627","_shasum":"da16f7b25521b429f2bef3169995f8aa0f6fb74a","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"da16f7b25521b429f2bef3169995f8aa0f6fb74a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170627.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170627.tgz_1498543998499_0.15347767365165055"},"directories":{}},"2.4.1":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.1","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"^2.4"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"8b2fe136f8cac532445bb3de89abd134592172d1","_id":"typescript@2.4.1","_shasum":"c3ccb16ddaa0b2314de031e7e6fee89e5ba346bc","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"c3ccb16ddaa0b2314de031e7e6fee89e5ba346bc","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.1.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.1.tgz_1498582143995_0.344432222424075"},"directories":{}},"2.5.0-dev.20170628":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170628","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e52b996484770dc2c051e9735f33dac8b0697713","_id":"typescript@2.5.0-dev.20170628","_shasum":"3d6951f6bce326d9e72dca3ce60ea80bdbc4a799","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"3d6951f6bce326d9e72dca3ce60ea80bdbc4a799","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170628.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170628.tgz_1498630475317_0.6575480056926608"},"directories":{}},"2.5.0-dev.20170629":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170629","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"51fb7e9a81a8821f2219cf68591faf36c66e01fa","_id":"typescript@2.5.0-dev.20170629","_shasum":"ebdcdab19a7d109bf2ca0545761b0410430c8ae0","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ebdcdab19a7d109bf2ca0545761b0410430c8ae0","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170629.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170629.tgz_1498716816922_0.8733491846360266"},"directories":{}},"2.4.1-insiders.20170630":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.1-insiders.20170630","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"^2.4"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"8b2fe136f8cac532445bb3de89abd134592172d1","_id":"typescript@2.4.1-insiders.20170630","_shasum":"a4bdde1fc8bdf5f3626c5183a0959cd31aaf0603","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"a4bdde1fc8bdf5f3626c5183a0959cd31aaf0603","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.1-insiders.20170630.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.1-insiders.20170630.tgz_1498858916100_0.4537896611727774"},"directories":{}},"2.4.2-insiders.20170630":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.2-insiders.20170630","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"^2.4"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"8b2fe136f8cac532445bb3de89abd134592172d1","_id":"typescript@2.4.2-insiders.20170630","_shasum":"1a0dee346f27083a1db9a29ac06601c2e7914e82","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"1a0dee346f27083a1db9a29ac06601c2e7914e82","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.2-insiders.20170630.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.2-insiders.20170630.tgz_1498859300734_0.9975741151720285"},"directories":{}},"2.5.0-dev.20170707":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170707","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d4c11bfa1b1e9b15d5f02211b37e590e38a9a2e2","_id":"typescript@2.5.0-dev.20170707","_shasum":"f915e2f1e3ced9077adaefa0867392d063970fa2","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"f915e2f1e3ced9077adaefa0867392d063970fa2","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170707.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170707.tgz_1499452226907_0.2818260572385043"},"directories":{}},"2.5.0-dev.20170712":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170712","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"38f6db52ac30f9dedbaf45565260e16d9add051a","_id":"typescript@2.5.0-dev.20170712","_shasum":"bd6bfd67bd532dd5c6cdd976a42c343c8da705cd","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"bd6bfd67bd532dd5c6cdd976a42c343c8da705cd","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170712.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170712.tgz_1499844559782_0.8934026737697423"},"directories":{}},"2.4.2-insiders.20170719":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.2-insiders.20170719","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"^2.4"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6105867bb05abc365d8d7f4fbd03e14a8d50117e","_id":"typescript@2.4.2-insiders.20170719","_shasum":"30e0912a37e61a851045d31a46a9bec3a1c15590","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"30e0912a37e61a851045d31a46a9bec3a1c15590","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.2-insiders.20170719.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.2-insiders.20170719.tgz_1500498187000_0.43802667362615466"},"directories":{}},"2.4.2":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.2","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"^2.4"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6105867bb05abc365d8d7f4fbd03e14a8d50117e","_id":"typescript@2.4.2","_shasum":"f8395f85d459276067c988aa41837a8f82870844","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"f8395f85d459276067c988aa41837a8f82870844","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.2.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.2.tgz_1500500117839_0.337849831674248"},"directories":{}},"2.5.0-dev.20170719":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170719","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"f37d9068ff14a2d8a4955d4a872b8ee33046d388","_id":"typescript@2.5.0-dev.20170719","_shasum":"2976f0e8961a86d79c8fc55d007d6e286505954f","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"2976f0e8961a86d79c8fc55d007d6e286505954f","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170719.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170719.tgz_1500504031517_0.33982362947426736"},"directories":{}},"2.5.0-dev.20170725":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170725","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d74cb24640e622a6b2171abab93d26e1726fe1ed","_id":"typescript@2.5.0-dev.20170725","_shasum":"bff038db3910533cf57d5b245f6bcbd657dc3f29","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"bff038db3910533cf57d5b245f6bcbd657dc3f29","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170725.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170725.tgz_1501005192726_0.16440121550112963"},"directories":{}},"2.5.0-dev.20170727":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170727","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"977d907417006c8698a0ce346195cda2d4a87361","_id":"typescript@2.5.0-dev.20170727","_npmVersion":"5.0.3","_nodeVersion":"8.1.4","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-HJuDc/hRGrAsGBSjdo5hMdKNs6SW0vC90Z11UizASp25ecJR5Wht+7yMoHBbt0cUFNzbQjXC9XQ5BfYnNmbZKQ==","shasum":"07357cb534fbb20df7d5b7ed5b0602359c9e1db9","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170727.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170727.tgz_1501177903435_0.2618401749059558"},"directories":{}},"2.5.0-dev.20170731":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170731","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"f945b26b540c264c769e2241826221917071d46b","_id":"typescript@2.5.0-dev.20170731","_npmVersion":"5.3.0","_nodeVersion":"8.1.4","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-UER8sKLiiQHm+2lf1PBOfeGWPukhqrmIcZ8SGNWRZ7PpPTZepvbgq8wJwPM6dMocs1CtdmkA+fqfVkL3GRTNtA==","shasum":"9b966de87df7c564e013efd654cb81204ba6356e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170731.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170731.tgz_1501520773114_0.1292343782261014"},"directories":{}},"2.5.0-dev.20170801":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170801","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"b74ec1c58b1c01e9331422315a7451d8eaee1ac1","_id":"typescript@2.5.0-dev.20170801","_npmVersion":"5.0.3","_nodeVersion":"8.1.4","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-LqJNvQzmzQ5VH1Roh4SNyirfmZcsDMsMUQdlX8flYZWmkcGsNKt06nukOvkQrmLnynrwFSoDCdsITInqUivvmg==","shasum":"fec0f6da5826e90784391626dc76df0f3c032d08","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170801.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170801.tgz_1501611907971_0.894744741730392"},"directories":{}},"2.5.0-dev.20170803":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170803","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"15527619823f191aaef8e3324cc6c0d460909a09","_id":"typescript@2.5.0-dev.20170803","_npmVersion":"5.0.3","_nodeVersion":"8.1.4","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-Jmcaeth43JUaVtjzjPeJsrKRjfCLz6CGBsskbj6UjwrhCWnJs/G0V/UCfshwFSYRuQjI+HoAlwkZj9Kijc0LCg==","shasum":"ac8f506f46ee04e66fff4eeb6b79ba90c03d33e7","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170803.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170803.tgz_1501782569561_0.4590054606087506"},"directories":{}},"2.5.0-dev.20170807":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170807","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a453eff575a18a94a22bd3c908a6df0e1c3dc392","_id":"typescript@2.5.0-dev.20170807","_npmVersion":"5.0.3","_nodeVersion":"8.1.4","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-NAb8DjK9lA3dWeFDapZYJEyR9xXLgTZWeQyPq8uX2Gf1vfF1Gu6Fx3B93yoACZDfvMtPAThcqfB99JKIKDfEig==","shasum":"b6aeb59066b5200d318adbb3cca64648d0c63812","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170807.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170807.tgz_1502125972130_0.3852668828330934"},"directories":{}},"2.5.0-dev.20170808":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170808","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"3deb39bba6bfa7dc0482bf1a6ad4494ed04dc3c1","_id":"typescript@2.5.0-dev.20170808","_npmVersion":"5.3.0","_nodeVersion":"8.1.4","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-Gb+2vCDs47CMtRzpoc41Uia4UDV4biDYZo9Z5nTwINftcI96FecFCQgJQAMLF8G4bKR4pwKmOuiSN1JyGInN3A==","shasum":"89e017e404b058414d0b992cedfd2d9865164a75","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170808.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170808.tgz_1502227864822_0.4436050308868289"},"directories":{}},"2.5.0-dev.20170815":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170815","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"7409648416b2eff6173c24ab530948f002c42c96","_id":"typescript@2.5.0-dev.20170815","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-hiBnt3zdLo3liDWHVHFp3R26drPDgChejIrUYyRnZ0tI/nCG3EbJiVMV/YGQo4KQTM5U37KGqkN/FdE1FY/NGg==","shasum":"ea5884dcc0766cfab609b1fb08a0d2b1b39d2c41","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170815.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170815.tgz_1502819606886_0.5707058594562113"},"directories":{}},"2.5.0-dev.20170816":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170816","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"ce2ac1751e044316066286c285818ff2d9cbbca6","_id":"typescript@2.5.0-dev.20170816","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-7H+5j8lTRgwcYz5IppnDw8Lei0odIdpAq2Fj71Miusk3RuZyxKgWvD1g1SOcJyWiT+Z/EjWFzVbH0VJLtVd8HQ==","shasum":"a569a9cb7b484ada4006c2cd4a0139bada93af7c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170816.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170816.tgz_1502894604033_0.7334152809344232"},"directories":{}},"2.6.0-dev.20170817":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170817","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"babb88a0aa4f240baee1264f68e77f1a5be67bfb","_id":"typescript@2.6.0-dev.20170817","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-MZ6HqMi+yP4vgdtOTrcIIGAhHx7BXDskyXM7To7MeOM6OG8AaUj6vDrNPrv+zSb/FHHvwoWQYOJtEIQKMrTr2g==","shasum":"dc9ec8bd893f20ebf79745bf152857b424a5f74d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170817.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170817.tgz_1502981953498_0.7536783607210964"},"directories":{}},"2.5.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"a5c9f40344d625ab3a86acad474fcc8474412fc0","_id":"typescript@2.5.0","_shasum":"60989e74cad93c28fe35f7f7b41fe9b205a25701","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"60989e74cad93c28fe35f7f7b41fe9b205a25701","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0.tgz_1502992377510_0.32360745524056256"},"directories":{}},"2.6.0-dev.20170818":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170818","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"eef7d8bd3d974528464c7968deab78b747568c06","_id":"typescript@2.6.0-dev.20170818","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-AeXs7+Q4CMl7vhyUcUYo63JWt/MTv3lrNBfQkx2HNZbWZRl2PqlcoI716cicvRMXCuoyhamSyh22SA07w5Zl9A==","shasum":"2f169638e89e38b35dd6944de594c4e41dba77b7","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170818.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170818.tgz_1503067645106_0.661298593506217"},"directories":{}},"2.5.1":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.1","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"baeedab96c609ec3b48877b7f535b587e0f480c3","_id":"typescript@2.5.1","_shasum":"ce7cc93ada3de19475cc9d17e3adea7aee1832aa","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"ce7cc93ada3de19475cc9d17e3adea7aee1832aa","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.1.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.1.tgz_1503082167983_0.16344557818956673"},"directories":{}},"2.5.1-insiders.20170818":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.1-insiders.20170818","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"baeedab96c609ec3b48877b7f535b587e0f480c3","_id":"typescript@2.5.1-insiders.20170818","_shasum":"2ac5924f002a8a5176c18b7d4d8ddc78c2da4b6c","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"2ac5924f002a8a5176c18b7d4d8ddc78c2da4b6c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.1-insiders.20170818.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.1-insiders.20170818.tgz_1503094723642_0.472465283004567"},"directories":{}},"2.6.0-dev.20170819":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170819","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"5e8e735db55e82ff0cf4bddaf4f0fe6d8a4d39f7","_id":"typescript@2.6.0-dev.20170819","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-zo10SV0RPiIzAcr108qjczvcoTDI4MAhOgSI6MbAH2wOdvgMRqf7xkqf6GgfPAoM7uPT2D7vShfF+9QR8Inc3A==","shasum":"219a43fe5b3842f60e465a3b8af87bd9a1dcfc58","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170819.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170819.tgz_1503154016756_0.6348706351127476"},"directories":{}},"2.5.1-insiders.20170822":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.1-insiders.20170822","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"f5698fc9ab65f1b2cba1e0191b1e2c371844a45a","_id":"typescript@2.5.1-insiders.20170822","_shasum":"1d2e941776d15142d699cef4e209bf904a6aa50a","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"1d2e941776d15142d699cef4e209bf904a6aa50a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.1-insiders.20170822.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.1-insiders.20170822.tgz_1503362862792_0.2260023602284491"},"directories":{}},"2.6.0-dev.20170822":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170822","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"2b1078441570ac2ad18788d39422cdfdabeb2835","_id":"typescript@2.6.0-dev.20170822","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-RBKtNKF7czIAhmPLP0bp/lUUSY/PbEuM5zkzxNmItbgXSn+S90pxGKnwofrZYFoiudZc0dVTBV6EnlTXmMBX7w==","shasum":"808c45bf362228491da9fa0295b7c05eec1d2715","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170822.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170822.tgz_1503413075730_0.9618717215489596"},"directories":{}},"2.6.0-dev.20170823":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170823","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{"browser-resolve":"^1.11.2"},"gitHead":"8d44e48dd0f63a2f48bd5045d4833e709c299a3b","_id":"typescript@2.6.0-dev.20170823","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-CXMBkISao3hUdpO/mpBde4i5f4/H/tQyD8dA/YpL/44284LqWKEk8R1RHhnL0PbY0S+7ApMdaklhml3+zMh0Rw==","shasum":"e39a10e9928c467c452daccec574f7fa408e7227","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170823.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170823.tgz_1503500317997_0.16027968609705567"},"directories":{}},"2.6.0-dev.20170824":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170824","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{"browser-resolve":"^1.11.2"},"gitHead":"cd2ea9a12f2bf42fcd4747782b34543a6c36c08c","_id":"typescript@2.6.0-dev.20170824","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-lLus5j815vVk3ib7w399VFVyQ+6RwXUgZKNa7gkDdflkdXi5Ss2jbQq0P/64XX6DJ+OiT5gwLrXaGN+szxEM5w==","shasum":"c941c50612daa44d76d73f4bbcab70baf56dad26","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170824.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170824.tgz_1503586029679_0.5719394437037408"},"directories":{}},"2.6.0-dev.20170825":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170825","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{"browser-resolve":"^1.11.2"},"gitHead":"62eaaf92069dc450128cd93320db877460722fde","_id":"typescript@2.6.0-dev.20170825","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-lqC2EiQ4kV3MwPFGmku4mzHRHXilf/do6quUYytd9uQN2Gwp7PZKCh4dK1s+VHe2o3C64IKNKZZNhtChysiguw==","shasum":"031ec551b4118e17a5969a8adf9c9481412c7b5b","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170825.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170825.tgz_1503672911731_0.3976198988966644"},"directories":{}},"2.5.1-insiders.20170825":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.1-insiders.20170825","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"2a2773fbb40653fba294fd690c9ea4d602c79f81","_id":"typescript@2.5.1-insiders.20170825","_shasum":"1a353093e4c4806b139f2706a3c10399d02c3706","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"1a353093e4c4806b139f2706a3c10399d02c3706","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.1-insiders.20170825.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.1-insiders.20170825.tgz_1503700963882_0.87099987315014"},"directories":{}},"2.6.0-dev.20170826":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170826","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{"browser-resolve":"^1.11.2"},"gitHead":"a32d99dfc8da65565ea037e76770f0dd2711a735","_id":"typescript@2.6.0-dev.20170826","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-QDEA+/GuGgtLGkIbXbmXJr9sff7jHET0FV5Hut5EB7Ti8oroyuNIDU1DIic/FtQOuPlyA96n3qVmSXe9ol2++g==","shasum":"4dd23e502f915496c245d558eb0feb13605ac432","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170826.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170826.tgz_1503759011862_0.9020352093502879"},"directories":{}},"2.6.0-dev.20170829":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170829","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","browser-resolve":"^1.11.2","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"3ea031cf1cd8cbef03d02261bdc50e1b9a62276a","_id":"typescript@2.6.0-dev.20170829","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-mmHkDLs67phJUnIJ9QihFPafSnxJWCY7J5uDTsgc5Xg8GaQnAkRanmG03sAh24qKXOGk5ndugz2CmbCf56cQSg==","shasum":"af3900993978d443bd39121509f22df4369e844c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170829.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170829.tgz_1504018669764_0.4772330252453685"},"directories":{}},"2.6.0-dev.20170830":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170830","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","browser-resolve":"^1.11.2","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"27e590dd5ec517007c3eb0d00b497233e63132d4","_id":"typescript@2.6.0-dev.20170830","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-15GiU986suiDKa264HRFuMR2y2jAuN7a7E1DfalkzdezEcq+b6wsV9VOrhT7IhHQCJDGFEkFYgUCgbroPWidBQ==","shasum":"d2672549fa1568db5eb2b3437f5ed635ca15a55b","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170830.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170830.tgz_1504104825119_0.39269257872365415"},"directories":{}},"2.6.0-dev.20170831":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170831","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","browser-resolve":"^1.11.2","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"4c543230c6b01a755c362bad7255a655821fed31","_id":"typescript@2.6.0-dev.20170831","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-pJinwANv8d2ePk8QvAoicrjXsj4H0cxgDP/GmXpdlCL0XZ2KYIwKiot9w2nyoCM9rrZ9OuYxmzlkT3KpG1Cxow==","shasum":"43b57e5ede485aaecf57a258bc4f8066eec2b1ed","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170831.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170831.tgz_1504191139221_0.42834356031380594"},"directories":{}},"2.5.2":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.2","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"171c664fefd945301ab0aaf287b3d1f288c67900","_id":"typescript@2.5.2","_shasum":"038a95f7d9bbb420b1bf35ba31d4c5c1dd3ffe34","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"038a95f7d9bbb420b1bf35ba31d4c5c1dd3ffe34","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.2.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.2.tgz_1504197626785_0.12888751062564552"},"directories":{}},"2.6.0-dev.20170901":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170901","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","browser-resolve":"^1.11.2","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"c7b4ed3a91964915b953b34ad2ae72f36e7d6efe","_id":"typescript@2.6.0-dev.20170901","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-futB+1BkGh06e75CpcdCOgB188oZ9ieaecTGL04pxJHlx5wy7Y4a/o5O8aLJEwllrXJgUvDemMMRI4MWwydbYQ==","shasum":"008e5c1b4a2ca1f5f2ffaeb867611aca14618801","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170901.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170901.tgz_1504277589428_0.5665403136517853"},"directories":{}},"2.6.0-dev.20170902":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170902","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","browser-resolve":"^1.11.2","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"541920eb314e200fb0b5ba989359e8fb7f6f8a4c","_id":"typescript@2.6.0-dev.20170902","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-7P6DWJnxKtjll270Uxx1tJFDO9DcFX7EwZR1Z2HGekl2DSaiS6ZFfitHgdeemfh5imqna4z7ccQF5vOKOhGGXg==","shasum":"039bb81ff445a3048564816b5496f4d43d839cb7","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170902.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170902.tgz_1504363574271_0.843000358203426"},"directories":{}},"2.6.0-dev.20170904":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170904","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","browser-resolve":"^1.11.2","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"1edecac0aba9486d8497a5ab592c39fc32a6a635","_id":"typescript@2.6.0-dev.20170904","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-xd0k7yuB0+DvjYMvUsE5p4NBID0YZi0RXSDGHkHZT+QU+YktA+dDtTM9eMNgbaOIg5PuxZFdZBc6bktAptQSVg==","shasum":"541cfafe30460ea9e0db24e5a04d61d3b0737856","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170904.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170904.tgz_1504536512624_0.25852116104215384"},"directories":{}},"2.6.0-dev.20170906":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170906","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","browser-resolve":"^1.11.2","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"d790f1d9d36aa60545296ae8c8dff6d92d34b2e6","_id":"typescript@2.6.0-dev.20170906","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-ddIhI4462HWNCrb/tUQDCXVuoUYZ8kmeCFjipfPrdHvG72Kd1AezmMCSixU+GTIezzhLFJqxBwfAEq9k42H6lg==","shasum":"cd0a13368fd76d3f469e402f5b07199f66d395b4","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170906.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170906.tgz_1504709744615_0.9891123035922647"},"directories":{}},"2.6.0-dev.20170907":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170907","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","browser-resolve":"^1.11.2","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"b533b24686d5f2c799e2c5edf6283243b6a8d2df","_id":"typescript@2.6.0-dev.20170907","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-2zGxr+tSPyvu0RVuC3Tl7gx5SmNQL05eAutjQJHSTvz/fE3Y3bnW3n9+u81vNnpzoBQ9M6Y6TBbyfNr1+LP7Qw==","shasum":"7fc5e641c8670c68ef48fa297b35a0f611e1c685","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170907.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170907.tgz_1504795786265_0.41996534704230726"},"directories":{}},"2.5.3-insiders.20170908":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.3-insiders.20170908","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"655145ca58b4b4bc3c9b101b4959c5637a61c8e3","_id":"typescript@2.5.3-insiders.20170908","_shasum":"95ab62d6aad9e6f0d7a039b33925a0d385ee0c8d","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"95ab62d6aad9e6f0d7a039b33925a0d385ee0c8d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.3-insiders.20170908.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.3-insiders.20170908.tgz_1504829181119_0.009933083783835173"},"directories":{}},"2.6.0-dev.20170908":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170908","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","browser-resolve":"^1.11.2","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"02cfb81ac0c9b870d31be14b16b0a08ea24ed32a","_id":"typescript@2.6.0-dev.20170908","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-Ik2B9MWdfG1P6TWq5umytEyPJqangpEQ0xxaE9RJGmpbBAokL+j3xW1BUxhShB2SYBZDmiNW72/0yQwuR2LFJg==","shasum":"6347ba004c0f7335bea35d6d5b405fad933bbe25","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170908.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170908.tgz_1504851041947_0.36501152510754764"},"directories":{}},"2.5.3-insiders.20170909":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.3-insiders.20170909","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"c476a08188be95273037838d9d7cdb750e39924d","_id":"typescript@2.5.3-insiders.20170909","_shasum":"ec192d0a7c2948489f98b9169966333f45fdf647","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"ec192d0a7c2948489f98b9169966333f45fdf647","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.3-insiders.20170909.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.3-insiders.20170909.tgz_1504918202005_0.3444040399044752"},"directories":{}},"2.6.0-dev.20170909":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170909","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","browser-resolve":"^1.11.2","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"409d6597ebde2fce5673c9704907e339c8a5dc2d","_id":"typescript@2.6.0-dev.20170909","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-aV8r0BmnlqTuMO3Dgs12TKE4eu9xmsquQ4KnWkzrh0G3vYhCcQ/uul8ZM33FnjToUtJLaKuRKYgXhzeNTNsyGw==","shasum":"0e5e6ff4b7f964f1e876d15d48742678daac4c8f","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170909.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170909.tgz_1504937442041_0.8490883414633572"},"directories":{}},"2.6.0-dev.20170910":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170910","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","browser-resolve":"^1.11.2","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"eb80799ef0e2e47d8a1ae74f395d1fcadd263340","_id":"typescript@2.6.0-dev.20170910","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-L2VE1pe1UG1X3o29MFk/UkK7ePui+tZIXeQ8NKjFqFb1mCoQ3u3bzkRx1t3sq1epGGUlkep+er60l01G3oAovQ==","shasum":"caa83f1ecee5dcbb950f28c370f482eb3770a672","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170910.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170910.tgz_1505023784729_0.4940042616799474"},"directories":{}},"2.6.0-dev.20170912":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170912","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","browser-resolve":"^1.11.2","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"2fbc2259a120c7be22397f01b6f99ce3c4306536","_id":"typescript@2.6.0-dev.20170912","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-j+yNuRMlQlUdehdToVOda0ExJ+Mb1LeMp/j3ZZT8+FmDcbJxxX5wWBzjjJYn0CBL9llLkVpVuAfRCewYQZ1/Bg==","shasum":"ee362716445f7864473f9fdfc8abc051f9f0e5cc","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170912.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170912.tgz_1505196602031_0.31803425145335495"},"directories":{}},"2.6.0-dev.20170913":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170913","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","browser-resolve":"^1.11.2","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"f2c81cc4f4068ef30b1f38da503887e44be03ac9","_id":"typescript@2.6.0-dev.20170913","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-2qJp4Qg9BxnjClMYpkwMCBmFgJ6i94l8p5onOryv5Iiag3VenfwgBa9ONMY8s04AVnBTD8tZPNokZY1HAymZYw==","shasum":"723a7cf648481bf5dd763bd60a81a86c9417a052","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170913.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170913.tgz_1505282950404_0.06867827312089503"},"directories":{}},"2.6.0-dev.20170914":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170914","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","browser-resolve":"^1.11.2","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"be5c00f4c9626848fe8e812aad32b86020c296bc","_id":"typescript@2.6.0-dev.20170914","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-WzNhZEHbT8rjt1t2g6v3Y9zWwkgfqyDR/XcFalDfaG4UxKznjrabdKJ27SJbkQe9cZacAplpIlMHPW/KzGzHzQ==","shasum":"4f01c8303be9b61f22d4614ea323035a2fc1b8a6","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170914.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170914.tgz_1505369341623_0.07892251969315112"},"directories":{}},"2.6.0-dev.20170915":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170915","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","browser-resolve":"^1.11.2","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"fd4a8d1516e5e5ae8c0c8b7f47ed4191a1799e68","_id":"typescript@2.6.0-dev.20170915","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-NAfnuKDjex4HM5Ug8ftLtCORX+HTPH5AW5DUqommA/g0xPQLslwO9no/eX3StmFrnRpqxjNB25h4WCFeuasTCg==","shasum":"3d1bceac42f833af844e36dd9ca17c2d7d006d26","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170915.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170915.tgz_1505455848509_0.17834743740968406"},"directories":{}},"2.6.0-dev.20170916":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170916","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","browser-resolve":"^1.11.2","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"0ac8406cd7896f347e17576e7f6c99e767cb35d1","_id":"typescript@2.6.0-dev.20170916","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-vS2ZnfmOcxDWykW9tHCPNgfjhdrgrw4XZ3uM7wrThxYjh8MI+xDbp1jwLc6kSMSFayTXfuV9UnztRWNa+TqoKw==","shasum":"a341a4969bbcf1b0cf19e55bc91cd55082abd37e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170916.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170916.tgz_1505542174487_0.7293181656859815"},"directories":{}},"2.6.0-dev.20170919":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170919","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","browser-resolve":"^1.11.2","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"21bbee4044b792bd835423dbb3db6608ae492d24","_id":"typescript@2.6.0-dev.20170919","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-JuWdfW+tUzvJfk+EruNNYwh8eVtKRfAwrHr6yf3Oz+Cc3CFn10tgcIqWH6j3wkjDssCIcCO5w3CWIrQ+nmt0nA==","shasum":"08574044531d223fc781f7e517eb7de435f8b10a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170919.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170919.tgz_1505801388816_0.4943979496601969"},"directories":{}},"2.5.3-insiders.20170919":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.3-insiders.20170919","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"^2.5"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"4a63ed7afa7361db95661c552114c70b75f56879","_id":"typescript@2.5.3-insiders.20170919","_shasum":"eb3c26c12db206f4c36a85ea7d2c142e3c4dd72e","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"eb3c26c12db206f4c36a85ea7d2c142e3c4dd72e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.3-insiders.20170919.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.3-insiders.20170919.tgz_1505863483759_0.9550785711035132"},"directories":{}},"2.6.0-dev.20170920":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170920","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","browser-resolve":"^1.11.2","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"8245597bfef17b8983b6a642e9326bce64276633","_id":"typescript@2.6.0-dev.20170920","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-2+tsTOwQUztFl1bBYzuH/4+mLFDNKjGsB2GFTtRf3o44D/2yh/yzpaAmh3/XIkhSWm58dM7Jp/7WhxC7/IouWA==","shasum":"511a16aa1f5cf88fc7a912c6ff516fd0d563ca05","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170920.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170920.tgz_1505887909596_0.7675170639995486"},"directories":{}},"2.6.0-dev.20170921":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170921","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","browser-resolve":"^1.11.2","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"d9951cbb8ec8de855f04310b987a7cd2082e7e1e","_id":"typescript@2.6.0-dev.20170921","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-sJey1YEppB52tuS2HDQEG3k+EIAF5TJm/AB3lmH1chyBcUVsOg1++Iyx4YSZvSIsGnBMO4+WdJ/scvwF7QjECw==","shasum":"b0a1f3a4549a9d17e5a91b17e5d255b3090a737c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170921.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170921.tgz_1505974381487_0.5453188403043896"},"directories":{}},"2.6.0-dev.20170922":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170922","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"30839378ac593386fc0a2a88512e2d26c38f3a24","_id":"typescript@2.6.0-dev.20170922","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-X4q3zz464yG54r3nU9chLk2gC+qkH4dP9QzxoG+WIQ8iDAbJIgaecPZFMB9j4XXagjya4Z1KVLPUlSNX7EAKKw==","shasum":"a9bab359496679cdf80832720140b24eb7c95e42","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170922.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170922.tgz_1506060552389_0.26522842957638204"},"directories":{}},"2.5.3-insiders.20170922":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.3-insiders.20170922","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"^2.5"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"94b4f8b79e370020cb31995e8fb0b78f9ba94349","_id":"typescript@2.5.3-insiders.20170922","_shasum":"0401084c938b26aaa53375c5864c951692af8dc8","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"0401084c938b26aaa53375c5864c951692af8dc8","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.3-insiders.20170922.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.3-insiders.20170922.tgz_1506118061598_0.9430080126039684"},"directories":{}},"2.6.0-dev.20170923":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170923","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"0abfd6a16504db3d3a557447fa32634222867574","_id":"typescript@2.6.0-dev.20170923","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-KqWJdDTBjpM6IlUbTOfsB1GhQv4GEkBidniiiI3zwBhOtXLdJYZPdtGfz8nX42AUDcIcifRBjwIy5aOCvO1KqQ==","shasum":"9318afa292dc1c87325bdc4fff3d169807219c2a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170923.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170923.tgz_1506147062960_0.05495683755725622"},"directories":{}},"2.6.0-dev.20170926":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170926","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"70087ed0d80157439d1a40858d3b361829457bcf","_id":"typescript@2.6.0-dev.20170926","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-Hb8TZnA2fH75G8l7Al8gbv6KR/jXnvXXQbrq3k7gAHHAGo8wsLrPSTYqBdInfm9LmZKS+qi+Ix0vfTHxmpidow==","shasum":"69aca48d0d7c38b69638dbb798e499349b86044a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170926.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170926.tgz_1506406244720_0.8128603189252317"},"directories":{}},"2.5.3":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.3","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"^2.5"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"94b4f8b79e370020cb31995e8fb0b78f9ba94349","_id":"typescript@2.5.3","_npmVersion":"5.3.0","_nodeVersion":"8.5.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-ptLSQs2S4QuS6/OD1eAKG+S5G8QQtrU5RT32JULdZQtM1L3WTi34Wsu48Yndzi8xsObRAB9RPt/KhA9wlpEF6w==","shasum":"df3dcdc38f3beb800d4bc322646b04a3f6ca7f0d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.3.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.3.tgz_1506461635237_0.99989277520217"},"directories":{}},"2.6.0-dev.20170927":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170927","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"6ffee104ca7f8ec18170ff560bea9ed5e9e91fd2","_id":"typescript@2.6.0-dev.20170927","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-9eHvfg8PZivz8hUOrCV8G/Aj6Zk+Fa5ao0+colK59ALr9SQG9POCSjDGI/Sc3l+Q8oiPzEauGkC8eqRJSpRF1Q==","shasum":"d462f9e2c81258f3dcc4afb23c7104c4388f2962","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170927.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170927.tgz_1506492751148_0.7486718771979213"},"directories":{}},"2.6.0-dev.20170928":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170928","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"9b77dd6a98a85d4a37c389518b10ae12e46cc931","_id":"typescript@2.6.0-dev.20170928","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-1sku5CE2cYFf7E86+NX6qRhSfHysLt1q1CmwXa/7othr/4Yeljxg1/jW72gFr08bM3eKXc9sxu+S5F2DCHTSyw==","shasum":"4d13c1e864d16627eea5f73ac9fb15d7f0b70d9d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170928.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170928.tgz_1506579179624_0.8129954724572599"},"directories":{}},"2.6.0-dev.20170929":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170929","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"8e4c559f2c9e67df770d4a1a10a9a0536e26c8a9","_id":"typescript@2.6.0-dev.20170929","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-+xfpZgprJrstxVUUGnAWFXyhGCVsLj2VVT2mkcLJiOeQ394q4fHlhdfPZ+CTLAvptcK9Kv18lq8L5UdpedQYyQ==","shasum":"b3502c926bf639a4319b2fe66418187625d64bda","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170929.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170929.tgz_1506665581129_0.8851116439327598"},"directories":{}},"2.6.0-dev.20170930":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170930","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"7aee3a102c60b2d1778963d14843a89badbb7baa","_id":"typescript@2.6.0-dev.20170930","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-cBcLhR8YEyBkRAaH984WLIl0W48sUlHjRyvA7RBPp+sfojrtQa2tFuuoT9Zf42LXOSUSaawc1ImKKBPgq0jioA==","shasum":"1ddb510dc99724f8a8f8279ff17c0b4f01ee2c26","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170930.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170930.tgz_1506752310810_0.8041006671264768"},"directories":{}},"2.6.0-dev.20171003":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20171003","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"5c7a3d050d62b4b6a9cb65c71f2bfd0e79f06bcf","_id":"typescript@2.6.0-dev.20171003","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-IHkdJVI/pFJZoLnl215lTR5RaKQRYLajTNRcK1koSmrS5rU6dJeUNJvSpd+sHVX0mjZTQa4almxTNoTUSlFkNQ==","shasum":"e1d0d6e2df40d8a6a444b5e67c32aa8e6392901a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20171003.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20171003.tgz_1507055313753_0.3599447822198272"},"directories":{}},"2.6.0-dev.20171004":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20171004","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"a3853d0774fd5312cd0b5a6b2dedbbd2a08bb966","_id":"typescript@2.6.0-dev.20171004","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-oSsUBvAZBXpQLhwZ8vGgCxThOXBloVUgGsAtZJupGw+AUQXwPSSLyCeNve/9kmImUy87LPfI7C6N/+Fw+KuPIQ==","shasum":"e661eeaaec21bb916403680baebca30fb5c5faac","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20171004.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20171004.tgz_1507097294702_0.9235125558916479"},"directories":{}},"2.6.0-dev.20171005":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20171005","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"c02865f3573840ccfd5db7ec7119905e7cb054ea","_id":"typescript@2.6.0-dev.20171005","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-tnlYauRIL6QH3EYSmwEE+Rr/+a3nQruUJFbVCyIQL7r14hkpzLRz4uqV/Vix1Cmnf7Q1K4yU3l+YcoekVjM1tQ==","shasum":"002e8a48528eb1d0aa81dac65615f510773fb7c6","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20171005.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20171005.tgz_1507183731975_0.19798404118046165"},"directories":{}},"2.6.0-dev.20171006":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20171006","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"7a4c3314e816bc7a7589d1e6e52328c38f1fc693","_id":"typescript@2.6.0-dev.20171006","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-Sy/znvSyAjnLRPzAvBYkqoSbwHbW+2pcUEM2TlfAoQQcbb6WpxP5jCX9hk0xSU3FvZ/+MnUV16/F2Y3bFUao8w==","shasum":"a2d066e9748b39a72353469e8c0c9a98012e1509","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20171006.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20171006.tgz_1507270406209_0.18894772650673985"},"directories":{}},"2.6.0-dev.20171007":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20171007","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"e821c2b6e9f244264779045fd1720fb9d16c0bb2","_id":"typescript@2.6.0-dev.20171007","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-WUcr7tsml8tyMXjNqqx7X5A9qRP2HjwR2v8uJlZzlGG61zFieZIxEjuj9PG/rhepApCF1BzZih+mZPz0jSpkPg==","shasum":"feead6b2bd906771c95fb8ae27e146d5b5ff6cd6","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20171007.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20171007.tgz_1507356787746_0.3167004967108369"},"directories":{}},"2.6.0-dev.20171010":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20171010","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"d23e5f1ee2fbe67db4ed0a5ac6dc856dfc7ce9c8","_id":"typescript@2.6.0-dev.20171010","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-zxYkmQlYx3wAyQV0CyXHeTXfPK/93rPCLMdUHTmx2nMy1qhlJXhu8cbBcLkk8Ytx7emOL0FMHIAF9RtDTzOsGw==","shasum":"f769d7c0a1706951306b8dd04bf93954cc625bf3","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20171010.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20171010.tgz_1507616081902_0.8465295415371656"},"directories":{}},"2.6.0-dev.20171011":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20171011","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"a7fa187fb2ac58892593e8936ac728d61a57eacb","_id":"typescript@2.6.0-dev.20171011","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-il66U8zNRbF875Gq6cP3K/CthG7Dp9PRpu5w5mVHaPcolzJhrdLa3K2WavqqJg/7h7sPOZvsU8nYdXO61sHagg==","shasum":"579ba897d319817ee202d0d203571d2ee255565e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20171011.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20171011.tgz_1507702508700_0.6046215759124607"},"directories":{}},"2.6.0-dev.20171012":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20171012","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"728d2a92ce2f3771ce726f4f6094eba094113ef9","_id":"typescript@2.6.0-dev.20171012","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-KLp7Z0f++UiDRlLomR48pzOwj2We/8WPkKPn9uA5Nmm7qD9xLD0pf7qEqs7EaNHCmGSdDl5bSwU2GHuVRsb2qg==","shasum":"42248ee530755effea01cfae7c3166c78ba02ddf","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20171012.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20171012.tgz_1507788936190_0.5870849860366434"},"directories":{}},"2.6.0-rc":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-rc","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"1c790bc4f9bf5102b98c50839ced416ae61b5612","_id":"typescript@2.6.0-rc","_npmVersion":"5.3.0","_nodeVersion":"8.6.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-5dDv8NNGYmipBdXnt9mqWqIbzQ/mY5XWjrLeNEROmkHGJ6TnacHUihXi2SvKMHQsCafbJZqaSO+agMRl8F36GA==","shasum":"6a8022e2dd3e7033f2dcf187cff7925ea3c8ac25","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-rc.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-rc.tgz_1507834848444_0.3845503672491759"},"directories":{}},"2.6.0-insiders.20171013":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-insiders.20171013","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"1c790bc4f9bf5102b98c50839ced416ae61b5612","_id":"typescript@2.6.0-insiders.20171013","_npmVersion":"5.3.0","_nodeVersion":"8.6.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-FcbP+P7z75P1CpI3brE9Zq9Q+XVzRS9K9OpAsIXszH+v/XczUq3SsXj8a1LVyuoZLmptjtj2roLDU2jhAyxMsw==","shasum":"2df25d9ea71f90ef41f8fe3b0829d09c1779de8d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-insiders.20171013.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-insiders.20171013.tgz_1507856359790_0.6845306647010148"},"directories":{}},"2.6.0-dev.20171013":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20171013","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"d940cdadfe52999eb37593bb4bcc531ac41c7d48","_id":"typescript@2.6.0-dev.20171013","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-pa7taT9kgn/svoK9mbeUORPt9GgOSgimd79ZNno7JTzrFQLU8pXnCrfSvGaprs2RKEpB+UEDxLx38WpWQ4r73g==","shasum":"7e4105e79af43bf7d08de72cc66becce1d55ce93","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20171013.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20171013.tgz_1507875320039_0.5154560105875134"},"directories":{}},"2.6.0-dev.20171014":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20171014","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"48d380f32875c1f95ce42921877736d74cb3786e","_id":"typescript@2.6.0-dev.20171014","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-Sm0LDjHwRky4mj4cWXykbfcko1iEsKGBBsVjOWYP5bhHuWQxYrcvdcYLQw7NhH1P7tdIE8eCGn4VMuilpFqj4A==","shasum":"f36a038efc6db6f8aa03cc20fa4c1980084ade74","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20171014.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20171014.tgz_1507961793902_0.19397647166624665"},"directories":{}},"2.6.0-dev.20171015":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20171015","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"d4c037739500d9f8b42753c57806881a7cd1bd2a","_id":"typescript@2.6.0-dev.20171015","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-nzEix2LsOs5r/iU9hH1ixfRjjC+Yo/2nCMPrvlCF08rqjfR4KPydEjv6NhcCLZABrQt2s0wcWq46irZeuonSUQ==","shasum":"d0df2cf511bfb58056fb80ab8ee7e390e664c82c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20171015.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20171015.tgz_1508048184364_0.48484851513057947"},"directories":{}},"2.6.1-insiders.20171016":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.1-insiders.20171016","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"1ccc04fe0a892e0e3c416b08efb7281fc6518c24","_id":"typescript@2.6.1-insiders.20171016","_shasum":"b8bc42e404c7bb938ed6f829cc688e8b41835f0b","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"b8bc42e404c7bb938ed6f829cc688e8b41835f0b","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.1-insiders.20171016.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.1-insiders.20171016.tgz_1508200677332_0.1356320276390761"},"directories":{}},"2.6.0-dev.20171017":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20171017","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"fcb48dd906c3d8be98423f206dac9386efb4fe48","_id":"typescript@2.6.0-dev.20171017","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-cpAFL3ZFANrG8itNrDfbvlA4y27CwkchkFUvxFlYF7xzXxHcvZuUoXCBWxZbhRFOcrAD0uyoVEPSFtnXqnSPSA==","shasum":"9778f4316de15cf35b7dbcdb18a90c1e4468ecad","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20171017.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20171017.tgz_1508220954721_0.9118635861668736"},"directories":{}},"2.6.0-dev.20171018":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20171018","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"574ebf7575da8388e8baea94751a092138998bf3","_id":"typescript@2.6.0-dev.20171018","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-Cot/6K8cPa+M8PppS27QS17jvMW8iKTe97txz5vVnYVGzMejI/b9NxhyYah2TCFl2BCCDt7UdC3F92RMWwvAGQ==","shasum":"91e5c1bf84c5b60685796405379403b988f6feb4","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20171018.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20171018.tgz_1508307678619_0.26038321550004184"},"directories":{}},"2.6.0-dev.20171019":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20171019","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"8212c962cdc8286ed9067c8446898bb0dc618c92","_id":"typescript@2.6.0-dev.20171019","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-KsPchRvXhG1lIferka0Lff2n/yHFZRmPRNnc0jPlU7v9l9ca27KisaUNemMnXuBIpWDgvokxR7peA4JqGWuXUw==","shasum":"fb752aee55ec89404e29cf564c285f143c3b0db9","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20171019.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20171019.tgz_1508393794653_0.9536942585837096"},"directories":{}},"2.6.1-insiders.20171019":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.1-insiders.20171019","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"4c1d076268469ea8ab7f10d037a508425f36d1d2","_id":"typescript@2.6.1-insiders.20171019","_shasum":"a8fa40e50723435ee4e685b6e2f66dd5c5930609","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"a8fa40e50723435ee4e685b6e2f66dd5c5930609","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.1-insiders.20171019.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.1-insiders.20171019.tgz_1508455274205_0.15572443162091076"},"directories":{}},"2.7.0-dev.20171020":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171020","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"1ea1254e8ee676f4c9356b3372d83677fd450594","_id":"typescript@2.7.0-dev.20171020","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-Sy1F2YVw7nj2pcMP2bE6YK5dviaY2WRJb12t27EUiW4wkD8GiaZ0sgNBdTKRcvTNFJ8KXjwnl+Ysi5+J5BlcHw==","shasum":"0003a879e3107f9df23adb8dc5fba90d0db79bbb","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171020.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171020.tgz_1508480133646_0.7079664517659694"},"directories":{}},"2.7.0-dev.20171021":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171021","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"ceba50750b7bd6c8cfc21a5886e6eb9de7f82a36","_id":"typescript@2.7.0-dev.20171021","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-PRBTt1WnEwGwA7CTN0B7AlHgobx1zZ+zpEW/OzcFfBfJgbCsBL28CkIz0ZpsAJNstWOtpC6+BYpwP6Vvne0jHA==","shasum":"32d945ef7deb0fcff6634173a903507efeef8d35","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171021.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171021.tgz_1508566427556_0.5624312383588403"},"directories":{}},"2.7.0-dev.20171024":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171024","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"538f1bf4f4d090cdb97dde63bc005bf580e91de5","_id":"typescript@2.7.0-dev.20171024","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-0FcjKogIW+OGhV4R/lK8r+gPlR2r+lSTu3YGIKbZ3gJWKBzgxTQuuQtQ/B4jdXsSPlEw9NczZe0aKM5K4lq9XQ==","shasum":"8bd83bafae5955bd2fb683bc4acb499adb92bcf3","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171024.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171024.tgz_1508825839220_0.32846161909401417"},"directories":{}},"2.7.0-dev.20171025":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171025","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"fd8980830ca35f07d838de5457504b95e6974d3c","_id":"typescript@2.7.0-dev.20171025","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-S9qiHmddviPhZdMfvfm1NzrTpRewCgcKkdhFjMoeyXdcFgqf/7ViMkl8KVeGWpSxWrkWHKUHR/4P6r9lyvNx2w==","shasum":"111f4617d164df470594f22f9d4a7cf8fceb9d5d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171025.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171025.tgz_1508912198532_0.9580594752915204"},"directories":{}},"2.7.0-dev.20171026":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171026","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"63dcdef6cf062fd0f0d83ca8758ad8bbf730b519","_id":"typescript@2.7.0-dev.20171026","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-YhlZhFNhe8YrBmZlQWYLpqZVVZisZaUMCqwkDGqvyW/QZqyz4JHSX/iTZbiTqHSwfLHwpexj5W59panej8NrKQ==","shasum":"6d6e1cc753136a262074d5a72425f2d8ec4072a9","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171026.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171026.tgz_1508998932122_0.5784391157794744"},"directories":{}},"2.7.0-dev.20171027":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171027","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"3e333e834e29ae1a90111996d04b737a34fc5e9a","_id":"typescript@2.7.0-dev.20171027","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-0QAKfJIZRTpZFKDGxMl7fqYNpzEYC12YHb8P8WbKglrp3UZeLkzTA5FRtejER3M942BD5SE1rpA5MTbyloo2fg==","shasum":"caf2c8d675e1d121bc4c4a17ae6bf924feb3feb5","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171027.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171027.tgz_1509085450761_0.956389591563493"},"directories":{}},"2.7.0-dev.20171028":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171028","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"b5f292d932d91ab88cec97719f81ec49161baf40","_id":"typescript@2.7.0-dev.20171028","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-yGXRXmQzgtkaLCVIUOrC7XKNpLEx2MBYWdqXUVuCk0jGFk58M0GVhCHxtonzQ1efBqf9kH7iD/O7IeCxOka6MA==","shasum":"e4d7db84babe19d37f104aca0872589cfb6f4376","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171028.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171028.tgz_1509171820567_0.703912922879681"},"directories":{}},"2.7.0-dev.20171029":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171029","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"7798f69558b3227f525ac3b56cb2cd8d03bc294b","_id":"typescript@2.7.0-dev.20171029","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-6LkYg0PcYzgI+huB0QwNkRNVaOKKtzUfV9ulYWq8wlIcjsHp66bfh+h21Rf3GMbGK4ta60M3uHpo8OFJQMCRIA==","shasum":"aea8338cc7e43563362bf5f1b4ab54e94378e66e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171029.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171029.tgz_1509257558385_0.6019481397233903"},"directories":{}},"2.7.0-dev.20171031":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171031","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"c66e3178ced0cff5c78b8d07035072fc6617f873","_id":"typescript@2.7.0-dev.20171031","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-m+B7AVXCZWmLYuggkpjakH6iyeupVrOQjGpH1qmkj1JD8aC0sqjs5R7e5csa0dKT66IlmUrrTVdzcrCXOTw7Ag==","shasum":"486494720deaba53f60a541697c665f6d512f4a7","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171031.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171031.tgz_1509430596836_0.6702833094168454"},"directories":{}},"2.6.1":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.1","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"477bdc78bbd092dbed60451fc684735bc401160a","_id":"typescript@2.6.1","_shasum":"ef39cdea27abac0b500242d6726ab90e0c846631","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"ef39cdea27abac0b500242d6726ab90e0c846631","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.1.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.1.tgz_1509469018429_0.16281037800945342"},"directories":{}},"2.7.0-dev.20171101":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171101","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"53ad019ba1c5ced4c0333f19fcd69bd31c07aa85","_id":"typescript@2.7.0-dev.20171101","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-PaErYUxbwNE8ujeaGonhnFl7iaVkzvsQOuLUIkgDn+jtXLpoXvJRcvPBgXobKOcvWtehVLm2tYcyz61hQehSyA==","shasum":"ec249c0e94344d560f753f5c83ae74ca01d29a1e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171101.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171101.tgz_1509516960728_0.7434560302644968"},"directories":{}},"2.7.0-dev.20171102":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171102","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"1a7a587a9ea11371c3748a632ac7613d20d1e5d2","_id":"typescript@2.7.0-dev.20171102","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-2KoOkcT9vU0s8nrHAezC5q+gffqj3Df/QG4ZqsY6EN6gzz/5toOFWCwEQ6tMTkJRUZZ0xNAoPAazgJp+X9ff+A==","shasum":"1f11b8c37abd4be1001fd88f4a2f55fb1259a85e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171102.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171102.tgz_1509603286538_0.14505293872207403"},"directories":{}},"2.7.0-dev.20171103":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171103","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"a8d3cd6dfe6de3e38d025b2e3556670df251e3c0","_id":"typescript@2.7.0-dev.20171103","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-Nt5F/G7/gRJJja893J7ZKjMhySWPt1iq6AJq68z0oQZmDfr/kb/3NtLQIxEtMyZN9tHAjeV4QKCy6TtqxRhJPw==","shasum":"0e9318e4890701846dd5e542a81573818b4fb311","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171103.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171103.tgz_1509689642183_0.7157303355634212"},"directories":{}},"2.7.0-dev.20171104":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171104","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"8d5b0529b2bb7650d471b4d64fd88061cde4707d","_id":"typescript@2.7.0-dev.20171104","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-ZnGly45fZWMDrehrOFcZ9TyDvdTznT76Bg4WiSXjICxnUBgcDgiEgHtA597egTRMKOAgZbQXfeYnbktZ+xtrOg==","shasum":"c91e9313a96a27aef9287ab5d6a10543cb709011","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171104.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171104.tgz_1509776198656_0.7404391807503998"},"directories":{}},"2.7.0-dev.20171108":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171108","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"b64944ad17450ddde30d648fce89fbb3e3599eb0","_id":"typescript@2.7.0-dev.20171108","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-tdNqrIdsTBEksRSBsbEVaSmVA7tkk6Q7N4z30Q0NSiVh1GYDg15tpBn7JD+53bFgtOekpnEn/n/cOc0p16FIbQ==","shasum":"bd316b6bb0455394d7dc37ae109ca28005b62094","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171108.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171108.tgz_1510121600352_0.3250115273986012"},"directories":{}},"2.7.0-dev.20171109":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171109","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"ceaeffa3ab2024aa4a8ff11a7a5d6826d1bd2bf3","_id":"typescript@2.7.0-dev.20171109","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-FC8/zn3R1HLPSiZkJsVB450L8X8Eg0PoHVqz6emXb5z3f8uyM8SxxU6iL2x89DoeQyg/xaguWvuLbJnE1hB9Cg==","shasum":"5b8d55cf06b95f6ffb6fbe76d25f00df6c95afd6","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171109.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171109.tgz_1510208248611_0.6093420449178666"},"directories":{}},"2.7.0-dev.20171110":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171110","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"16efae24338f09c9059c8ec1525166f521110935","_id":"typescript@2.7.0-dev.20171110","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-cdQOWn0KBq213PVV1ZrQ9NZTeGrxS7JY0MHWaDE09fLayIyFfIePDRxIZjjTioM5eUl3vKiXA0jz4FQOW64jVA==","shasum":"b83240d5e9aec6c3a9dc6cab2e92e8008a820cb6","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171110.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171110.tgz_1510294730310_0.6765591120347381"},"directories":{}},"2.7.0-dev.20171111":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171111","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"d2eb8ba640f997c988b6c944fbaef61ab1e142ff","_id":"typescript@2.7.0-dev.20171111","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-BJJz5gQ2NWQWHUSHQSMNaXvPM52DK2W/BvCzRnPkseiYgH/NsC9huPBD2sJ3VbDgoNI48F0BGWkoqsMM2ELkvQ==","shasum":"9f5771356206df2ea5ce316fd2b7e7c44a97f996","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171111.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171111.tgz_1510381393296_0.8131012378726155"},"directories":{}},"2.7.0-dev.20171112":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171112","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"b8fbf884d0f01c1a20bb921cc0a65d6c1a517ee8","_id":"typescript@2.7.0-dev.20171112","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-b1VZBtbO/DSXZN9KWSXl5lRa8c1dQu+cWODv1GsOfFo8K6RC98m/nKm/fUdC/VZIZxhtzC798TuanbKo4rVZGA==","shasum":"546557c10d2feaac7b94323685f0af38f7aa0832","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171112.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171112.tgz_1510467217930_0.5014296700246632"},"directories":{}},"2.7.0-dev.20171114":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171114","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"bee12e6eac13cfabdbe28d5f7ed4372fc24712fa","_id":"typescript@2.7.0-dev.20171114","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-mm4+m9IHtf4gqOxEU8ZwLAzWAbP+xZoEZbdchPitTcDpO2HQv4CkVSM0Dunilt5xLod8hb8qeJNq5H5fg0XIzQ==","shasum":"79d730a18d9a67309bbef9a364b8853daf9f3d9d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171114.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171114.tgz_1510640884275_0.612911474192515"},"directories":{}},"2.7.0-dev.20171115":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171115","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"8a7b8445de0e3419b0303346805ec71ca4ed6e2e","_id":"typescript@2.7.0-dev.20171115","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-6M5T2dQY2G7871nYAOtUD9dlSsjaGUvOSZEEi4ECSbIWIkbUXCvzVWubZhnb9j57FTqy4IpOTzldcHKCsRlCZg==","shasum":"2fe9e2d2dd381d6485a6572c9f13cd4ab67a5261","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171115.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171115.tgz_1510726659161_0.1635249019600451"},"directories":{}},"2.7.0-dev.20171116":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171116","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"b4ea7006f1f9f098103263bf56f61c47caa545af","_id":"typescript@2.7.0-dev.20171116","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-gAeUoaNxUo0m922dtJE7ng7fdNIhrZkJCOGEj0ETERMTR7I6wmC2g2f9qE2DcRxwYntitnoJAeyKhJ7LZqoxTA==","shasum":"bf692cb7929aa83305c0a42937e2bd871d09fc86","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171116.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171116.tgz_1510813295863_0.7656756765209138"},"directories":{}},"2.7.0-dev.20171117":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171117","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"12989456d191e820329ce98d06b0b1103055bc5b","_id":"typescript@2.7.0-dev.20171117","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-UAflUlbG6kZvtZAHnF2wbua3f2g4uYLsgWkntP8j5LkEwI4+g0NXzC8G7bWA4w2HmzNlnJTXT25p1KdpHzK/Tg==","shasum":"bc4527c388386882980c548672452d1b00e26616","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171117.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171117.tgz_1510899963522_0.9288466216530651"},"directories":{}},"2.7.0-dev.20171118":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171118","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"6c4c10c7cf294dc71f943314e29a7dd1b6e88c6a","_id":"typescript@2.7.0-dev.20171118","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-OponZ47LDVOIsxLY70gNEyZ8goIxOFPdcXJru3HqUoYBA8rOPMeN/XXzDvJi664PJywdF8E13gkuiRHdywTr3A==","shasum":"d7cddb2b523f13f632ead5964f5584fc2e74f855","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171118.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171118.tgz_1510986016847_0.14841227675788105"},"directories":{}},"2.6.2-insiders.20171120":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.2-insiders.20171120","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"^2.6.1"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"6513bed4d3d83b873c4866a91b99ab852dfa1956","_id":"typescript@2.6.2-insiders.20171120","_npmVersion":"5.5.1","_nodeVersion":"9.2.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-hLtSTJQQY09AZGqhraD+SJsxE3h1uG8PhTBYbYBJhumHNzod4Y3j743wAjkfpRCbt0Ej31mew8kV5Qny8IPIFw==","shasum":"d2f4c36831fa663639624799a62814cbdca9aaae","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.2-insiders.20171120.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.2-insiders.20171120.tgz_1511219768031_0.7574593869503587"},"directories":{}},"2.7.0-dev.20171121":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171121","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"cc7b46bb75fca66d0a1501750bf0c365fa11b179","_id":"typescript@2.7.0-dev.20171121","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-rIUKj0hFWT6NvEPvo8+3zZTVFxJQYupmIKXOne95EAKdyJ5yTOPRQWuX7iUyxTUt81+K+at6kQAp7dJ+rKhb+Q==","shasum":"5922d22931098bdf131d9eb0490b3cffea5c2ec6","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171121.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171121.tgz_1511245065511_0.43605618411675096"},"directories":{}},"2.7.0-dev.20171122":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171122","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"332a61ee8b40a6afd87525e47bee03ae23247833","_id":"typescript@2.7.0-dev.20171122","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-xRqZJdvzA6+O1/lqpnFS65QVJB2dzuaNKUueZGWFLUqXqq/bv2tLIuWAwDUyVhDNHbtrg6VpB6hhCpR6TcHzMw==","shasum":"d4e430678a00129273bbac91b5bee1baa897c315","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171122.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171122.tgz_1511331880446_0.36954339034855366"},"directories":{}},"2.7.0-dev.20171123":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171123","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"8c889333d85e862b6579e017e8d10ce048b33aef","_id":"typescript@2.7.0-dev.20171123","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-NPgs9Yt0D4Xbgr5QWEQ4hNQX8SzwfPDrjEOq4dNyQz4vb0YmZkScqUSy87/jc+JNmwf9AyTXDH0e+jSwTTl/5A==","shasum":"1b20465cd004cc7d8453487c7dbf48e0fdc5b208","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171123.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171123.tgz_1511418259128_0.18761202902533114"},"directories":{}},"2.7.0-dev.20171124":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171124","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"0d9bc55033a3b5c8f68622803409476c7a6f82b4","_id":"typescript@2.7.0-dev.20171124","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-sJMx4549BgmKw152H0IfOIm3zqQS9pOsEiOpg4kX1FmuKYa4aAnTauTlvnC/NVdt1qtrLYvgq2LAIXNwI5QI7w==","shasum":"434b2829f586290dec109dd4c089e36027ef9cd7","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171124.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171124.tgz_1511504352484_0.6056827106513083"},"directories":{}},"2.7.0-dev.20171125":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171125","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"568e52d55087984c3e4f2df9f95101f5eadbdbd5","_id":"typescript@2.7.0-dev.20171125","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-frQQvIY/wHw1ycW0mALl9RK33TOUQryFO0ybW5nJeayyz4lYiXv6eB81WTCj+6lmA6zwZdF4rTN7hZ9CJr4faQ==","shasum":"68c28d0d8846955d0cccc50dfe407cb8c9fdc2a3","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171125.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171125.tgz_1511590633743_0.21556506864726543"},"directories":{}},"2.7.0-dev.20171126":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171126","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"0ae5a8995e8b395bb3088d00e40e7933763a0945","_id":"typescript@2.7.0-dev.20171126","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-/srxUzGJqkOF4NS69Q+Tivwa8J2fjrsBaF+5/WcY+fayYdk4RQnfCLB6Ux4htDzY2UmMy73ZPXuIkt1i90qATQ==","shasum":"f7d13d156bc9a2fdedb47cfc593595eb3728c605","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171126.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171126.tgz_1511677009978_0.5246562317479402"},"directories":{}},"2.6.2":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.2","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"^2.6.1"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"54426a14f4c232da8e563d20ca8e71263e1c96b5","_id":"typescript@2.6.2","_shasum":"3c5b6fd7f6de0914269027f03c0946758f7673a4","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"3c5b6fd7f6de0914269027f03c0946758f7673a4","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.2.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.2.tgz_1511806648239_0.8767166533507407"},"directories":{}},"2.7.0-dev.20171128":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171128","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"d2da58e0cae0a2575ff1f1175712f57bcb83db05","_id":"typescript@2.7.0-dev.20171128","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-7YSRUJzBGlIVVBvqPzoszcJB0eCKh9+uX2YFfRNW1JJ5ZZhT7hH//CLni6U5Na+XYm7cgFi9yxdm9buIvcOFWw==","shasum":"55ebfe6a14cae76e91616bfadee0f9d4439eada6","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171128.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171128.tgz_1511850661249_0.0834644720889628"},"directories":{}},"2.7.0-dev.20171129":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171129","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"b6f53eb5a943a236183d6dd23e21047428dda82b","_id":"typescript@2.7.0-dev.20171129","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-ol/AGcRTNWfQQIyPxeqiDmzKIYmRsCjvAUS5XMpGLNGjelU2GmvJJlwrQP5H2NOCV4njdgF0pgcVrXENRvIVyQ==","shasum":"873780fdc8ef90c17979d9beb0ea7dc04eed42a3","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171129.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171129.tgz_1511937133928_0.6490056074690074"},"directories":{}},"2.7.0-dev.20171130":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171130","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"cdd3cd4f514248c353cb540a98445a57ad619bb3","_id":"typescript@2.7.0-dev.20171130","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-AthI3Irg733CPaN4Ci5xjqTsc9G0KA6yBQ0fOfHo41ZaXDStrp10Lsxksljr18N/wTRMiJEjp9SA7Jc7bDqvwQ==","shasum":"74185f7a07bae17d5d70bb240dde3f0c2a79cdf7","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171130.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171130.tgz_1512022701950_0.13930127653293312"},"directories":{}},"2.7.0-dev.20171201":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171201","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"8f1cdc9b0c649f1e4fe9d96718be93277baa2ecd","_id":"typescript@2.7.0-dev.20171201","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-v1Oy3pGRIsscRRoQpkqiYsVGBrf6RBoG3AzSKocKGfedxv0WPrCvxKApl9LPg4mBgLo7IEzF32E2Q+X+U15O3A==","shasum":"12a62d87a64b5c443ffeeca5ae1492c1eb74101f","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171201.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171201.tgz_1512109025548_0.3620126966852695"},"directories":{}},"2.7.0-dev.20171202":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171202","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"e90bf5e81bcd1c1d023e37873a5198d0d4e7e41e","_id":"typescript@2.7.0-dev.20171202","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-izkFJwSD2sb0Hipu38rBJ7TLcYXlsRl6QZI+lVwcpftTPQE7Cd9AbKc3nHWpQ3REEVXmV7kIq5fhyaC2C/0mwg==","shasum":"332d583e650a94b3ac2bc423ea26fe45724477a3","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171202.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171202.tgz_1512195446698_0.6781525209080428"},"directories":{}},"2.7.0-dev.20171203":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171203","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"49a48ffd4d7ed76fa4033752d1d55a1ad31ab18a","_id":"typescript@2.7.0-dev.20171203","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-FyhV7OvieIXzjktOb9YmixEIR8olL8IrnonCmJQWGnj8Wt6eoQQKQlkXWPy8mpwEaSIXw/nQO0NpGQ+nWokhRw==","shasum":"14039d585f3a331e4da84d4bc7ce559ca3b51ba9","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171203.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171203.tgz_1512281777048_0.05915719526819885"},"directories":{}},"2.7.0-dev.20171205":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171205","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"e42ecea8fb08e843188bb7b3b5f907e626a36a8a","_id":"typescript@2.7.0-dev.20171205","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-vPQQqQjTNLO2SzVQADu6svncQZT6nonsMmpYVnP1ZGDIIa9xomu9OtKmsv71W8nca7WQEPVPCr/ngnlfVHEU5Q==","shasum":"d64f0d7ea6b56e6a3e6351fb78e5e6edbe5f0941","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171205.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171205.tgz_1512455497520_0.7154463592451066"},"directories":{}},"2.7.0-dev.20171206":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171206","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"3a3bb8e3f07a1dac3e1297d08e2733eb7e7347d8","_id":"typescript@2.7.0-dev.20171206","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-sq6ZlGCblvrxxbdOik5E/aDnw0+2nclNy3u8zeE+rZRqxFObzmpwrgLQP8Xa4xo23GMuBNuvjSEolucxJOuGyg==","shasum":"3a7db27843a50e395201dc0e1ec8874342585823","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171206.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171206.tgz_1512542176992_0.9748989699874073"},"directories":{}},"2.7.0-dev.20171207":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171207","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"477c1f57a985f3336475e9e65d323e5455df3e75","_id":"typescript@2.7.0-dev.20171207","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-394zbMCIrmMOPYJTq/BCW0klX+xDxFE+grLo0vrUeUe5bU+Csud2G2ILPLp4FwyHCHgA7c4jXIkzj+DRjjipZw==","shasum":"753a060292221046a537c5eee30f1fa7afdee29e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171207.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171207.tgz_1512628692851_0.8101834668777883"},"directories":{}},"2.7.0-dev.20171208":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171208","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"8d209a3672dddb5ebe7e846b35d510f409cd507f","_id":"typescript@2.7.0-dev.20171208","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-7l5KJiFEKAID5XWNq0egz9ZXDI5cZjzhJd+rthgNPNsZw0RXkMRpmBk8wVpfP4t0rDkiL9WpzvAbEAF2KEGd9w==","shasum":"c7de27d1af41747730baf9010d31d177b0f324b3","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171208.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171208.tgz_1512714991995_0.9054313988890499"},"directories":{}},"2.7.0-dev.20171209":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171209","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"9e51882d9cb1efdd164e27e98f3de2d5294b8257","_id":"typescript@2.7.0-dev.20171209","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-4ETBmIehQBmJOVwb/awg+EHMjpq3esymYD+tKRvxHv3cW+1s9+t8kdozn3/Fk50vAH13YtOHxuOcvU7OXrdG5Q==","shasum":"f0e038b1603217b48cdd98b376f728d46012129c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171209.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171209.tgz_1512800882680_0.7125193176325411"},"directories":{}},"2.7.0-dev.20171212":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171212","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"3aa192a870a3d81575ed1431d2d16ebb3a3db079","_id":"typescript@2.7.0-dev.20171212","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-D9eP7T4QjfsoFNi35iOYTgLgwQE+OrVkWFQ2p+MbgKd0W2Qupqe6COyyQPoUeXvOrB5rbaIkeomh+VFMOPjtKg==","shasum":"e46f0735832d78d91376f248758ae1e55600ab7b","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171212.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171212.tgz_1513059471359_0.42005243338644505"},"directories":{}},"2.7.0-dev.20171213":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171213","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"9ae67026d7f121be67d772ad3bf6b9167334b216","_id":"typescript@2.7.0-dev.20171213","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-HiKU18Mj3aXcFv8fZlWINoRPUa+Iuyk6bflJ1JtkD4jpVzidfLN2zdetDIiIOWqJrwWHsPNk+mqRg54Su+/W4Q==","shasum":"f6d085f769ffaf76f1cd488de2b679e277cea31a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171213.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171213.tgz_1513145963334_0.6618895113933831"},"directories":{}},"2.7.0-dev.20171214":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171214","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"2368ad7eefdf1aa3ce9678ac2b1649a2db8bcef3","_id":"typescript@2.7.0-dev.20171214","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-frLKPilNYRhALI0wq4xUwOx+1nOnZKmpoIpxxpIu+yCXP0DIc79/RmfBwAwfxtDifVqaPaluVUFq9hHWa4F2Iw==","shasum":"e8c1b0bc5148e11150079b4373dd09921b0d9244","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171214.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171214.tgz_1513232344441_0.9608038102742285"},"directories":{}},"2.7.0-insiders.20171214":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-insiders.20171214","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"26c1a49d59dae5c7572ee82828752ba49ac7dd19","_id":"typescript@2.7.0-insiders.20171214","_npmVersion":"5.5.1","_nodeVersion":"9.2.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-k61ip2yVZg5cTziSBnilKRnGwJwjDleAjv86Dbl50vl8lMfDyZ4xQIbc5mz5aAsZAI/QZXfMcyOFOULO9AF5vw==","shasum":"841344ddae5f498a97c0435fcd12860480050e71","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-insiders.20171214.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-insiders.20171214.tgz_1513289936963_0.8040244339499623"},"directories":{}},"2.7.0-dev.20171215":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171215","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"423ab2e03dec6ede17beaa1aa02cb697d890fc88","_id":"typescript@2.7.0-dev.20171215","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-i1BAdDEpdGf9A5Ax5oxeUgDDpdidSzFRFX7+7UYLqLBMqSN4R47JDJjyGHJF+i4DEXJmEu0Ykfa12nEcAGwTnA==","shasum":"069fe6937904ee5e8b2d76ce5b7a8d42d186fe14","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171215.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171215.tgz_1513319231145_0.545740137109533"},"directories":{}},"2.7.0-dev.20171216":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171216","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"aa9e2ba31822ba7b002cf1c436e2c6cd6954972b","_id":"typescript@2.7.0-dev.20171216","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-RYVNBWK/OXgXWUY2xJVYVLN3cgqv9a1sPC+oXKDW+zeiRqkrqAQcs4HQUZn3TmyAwb0GcFaVEJRbXb1b1K9DEQ==","shasum":"ae3ff4ea462a8a5f37923108edeedfcaf9c5f1b7","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171216.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171216.tgz_1513405579940_0.950414395192638"},"directories":{}},"2.7.0-dev.20171219":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171219","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"6c15fc663485987a69d8be8feff7833b916fdb02","_id":"typescript@2.7.0-dev.20171219","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-gqyvX26+pX/aaWW8+E/y5KYv2BGQcRAI366DBu0dxsy9lOusuppu4Zt5m2vJyRHhLYiuk0QDj+b+tUP8sc7i+Q==","shasum":"bc42c11d2b0ff44d60b53c4171cf30fa02b4bff1","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171219.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171219.tgz_1513664655733_0.8562055891379714"},"directories":{}},"2.7.0-dev.20171220":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171220","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"8173733ead1bf6e72397cd68e522fe25423a56a4","_id":"typescript@2.7.0-dev.20171220","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-FpuHYniUwj5luzeVVqUY3CtUYu3XfN2YMUvR31B9Y+eL5126d5xZAHhY9abznjfqIF/TM7xnpj1Dry8fC3x8xg==","shasum":"1a9a5efb78c92f5bb1d87c7db3140da60fc2a440","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171220.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171220.tgz_1513750676734_0.272092804312706"},"directories":{}},"2.7.0-dev.20171221":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171221","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"e08e6633ebf090bd93a0bf6880316d59a45556f1","_id":"typescript@2.7.0-dev.20171221","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-PM09fTK1T0WSZHNDXqrB/P6lTaQkzAnXlx23Q5J/21oQ8kgU7B7TtUFTX7zzdSZnH78j49aUx5bVuQCRJkBowg==","shasum":"619e94e3dd6012c00536cb16730d907f16acacd3","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171221.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171221.tgz_1513837497008_0.8636708438862115"},"directories":{}},"2.7.0-dev.20171222":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171222","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"7ad0d7b9fdbadf6081e6cf909b44e84a8ac7942d","_id":"typescript@2.7.0-dev.20171222","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-8oeulYD2UgbpW+wAmPzb7YaGJaxbZvdq8N7sJ2feaVmwXNDuXXZh2HiDI+8AMX9losRUIodo7uSeVR3A/Mrv0w==","shasum":"4c29cf459831ef5863e6adb98235ab6d96ad7c88","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171222.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171222.tgz_1513923455890_0.15567407896742225"},"directories":{}},"2.7.0-dev.20171223":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171223","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"fd4ac106778a86bd58918a9da4877d72387845ef","_id":"typescript@2.7.0-dev.20171223","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-Q9olYV47QAHE4Sx+OCZDzTJKgvPpeKH6roucwXFYnrPJKkbrtmZzmF6+7VYM/rkhGRj22+M0k/yObmGMs6rSfQ==","shasum":"1bf658be9c733ef1a7bae651396a49a17c307365","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171223.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171223.tgz_1514009784613_0.34367261873558164"},"directories":{}},"2.7.0-dev.20171224":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171224","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"46262405bca681ab8b8f01a6ba072f8d73ef532f","_id":"typescript@2.7.0-dev.20171224","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-TXmx9YgRwRVdExn2SA6fHCgEtmw/yJv+MXn39kdHSb8xg+41KEZKQwwiLOp6l/OgIeHL2PICCl9apt0ORK8AGw==","shasum":"52e99b867410d28d1c8cb88d3651e2650ff9d252","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171224.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171224.tgz_1514096188168_0.7725425474345684"},"directories":{}},"2.7.0-dev.20171226":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171226","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"b15ecfc51c84cc3b9a44d3ee167c2d18e7664278","_id":"typescript@2.7.0-dev.20171226","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-iOD4mO63Ipm3YxKgmohyvHpXvqWtISLnjNBFufuNG7qX80ToSmd6qT0QQw1NCrzxeym1QOrYOX2MmiiGEhjnJA==","shasum":"f13145a9da9c9fc6b35514171a4ad35811089c83","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171226.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171226.tgz_1514269001522_0.4775751477573067"},"directories":{}},"2.7.0-dev.20171229":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171229","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"7cddbf5ad7c5df033d46839857ee4cadc558cbf7","_id":"typescript@2.7.0-dev.20171229","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-1mlIq637aWmZqB1sGZ09cmzTbCdWPed/iIp571HyvmHpnyy5Gn6rUwtzx9iSglwEfing0K8seAgT7Glf+ugDCA==","shasum":"7c7348d554c1b1548d70e5bad490d17049a19106","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171229.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171229.tgz_1514529039187_0.657717518042773"},"directories":{}},"2.7.0-dev.20171230":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171230","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"0477f91dbad209809363323042f34926d3a6e175","_id":"typescript@2.7.0-dev.20171230","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-A5cw41X6MQNUCvreRUyqh6HAf61O+OeE1o2tZFh6hXLOo2aEQsrP7diRiu7Mw7/XvOfCpcyFOtgE6AYXvYe1JA==","shasum":"d245060f3881832c592235b917083b6a581d206d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171230.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171230.tgz_1514615136667_0.5855078753083944"},"directories":{}},"2.7.0-dev.20180103":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20180103","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"29378b2ce21320336c276045371cee302bbc4db1","_id":"typescript@2.7.0-dev.20180103","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-f6CmdvhaXyqngowgGu7R6wSffwjAJUb29XpVkrfwEYO5T8M0EqaOPaq5XFx10Gi4umK+YGLV6A9rRYzUY8qhrw==","shasum":"b5855826bd0f520b379852a748cb8a6954d3c411","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20180103.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20180103.tgz_1514960364135_0.2845246933866292"},"directories":{}},"2.7.0-dev.20180104":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20180104","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"e3a20e7f0aa9cd76104f45c5a6997ff59ea39ebc","_id":"typescript@2.7.0-dev.20180104","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-ao+HbCE1hbdQXckjo3EXaPpKtqwmkzfOEin1HMj7TDi21PEm1xVv8iuN8xmDBMWA9zv1wmz/dR3LdKIkOUndJQ==","shasum":"ec00799bf9c34791c4f6f6ff268b1734db7730a9","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20180104.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20180104.tgz_1515047077085_0.5438133957795799"},"directories":{}},"2.7.0-dev.20180105":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20180105","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"4eb633e0d9ac8e022cdd745206062de573ae5b77","_id":"typescript@2.7.0-dev.20180105","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-vCiuU6w3qtngOadGnY9/B4o5KB1JCVnV970PGLcpuw2AMbNLOhiMpp08nQQkpZvTIL3lJyQGeYhcDbdIEnzdsA==","shasum":"5df2476cd9c38086e61d031a0f48b5047fcb3f37","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20180105.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20180105.tgz_1515133033210_0.1527466243132949"},"directories":{}},"2.7.0-dev.20180106":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20180106","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"1957dfef8ea1f56df286e3f409d888d7bf557615","_id":"typescript@2.7.0-dev.20180106","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-UvQkXDDUZIYWGyRZ/iO48djM/96bPQiCL/5O0qN75RVvlCC6yEqYmVhCw51RQa/iW8gIKtIuFGcVMzZKqnkmLw==","shasum":"87f06d13e64ff52fd8539568a0bdae417703d650","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20180106.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20180106.tgz_1515220175562_0.6198401900473982"},"directories":{}},"2.7.0-dev.20180107":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20180107","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"28a818f6ee5eba034dda8b1108cd6dbd874938bf","_id":"typescript@2.7.0-dev.20180107","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-WiBvqEuVUGKwBn6jKyLPLpQYzpe6ccsejXNfemSd90QmmAb0WoeQa24gtOKV9Pt7DE7TioDv+oQlPDs35Jr0/g==","shasum":"8b35d19ac2b1384264e26f36f2a5b1ce86c81913","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20180107.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20180107.tgz_1515306897337_0.8528149088378996"},"directories":{}},"2.7.0-dev.20180108":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20180108","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"943e52211bd1677c0b9f5073874e304d1338c0b4","_id":"typescript@2.7.0-dev.20180108","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-ZlggGsch8Y2d0LqAlCYGRzm/gdm2bqSpb4rdthY+YvpPsQqFixT0tU8sgjeRibMXW9hbS2Hz6kibS8L2oUKWfQ==","shasum":"c83d5610b7a8765cc6962331ef8c9b2577040ed5","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20180108.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20180108.tgz_1515392760930_0.9011138600762933"},"directories":{}},"2.7.0-insiders.20180108":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-insiders.20180108","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"c6e4373403059d66743839a0677050edbf7deb04","_id":"typescript@2.7.0-insiders.20180108","_npmVersion":"5.5.1","_nodeVersion":"9.2.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-WWCT0HFa+Yg0kpIf1+PZxI9C2GfMvR8Zl1OJEWO9gTq6RS1BcR7tfw5L/zsSK+FAiy6IopNNF9QwXgZC87zeNQ==","shasum":"b9230ca5a0020e92133f63e6a4272f8c1b301bdb","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-insiders.20180108.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-insiders.20180108.tgz_1515397839626_0.20366831682622433"},"directories":{}},"2.7.0-dev.20180109":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20180109","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"ef5a289966f1ce1a72c9865272b068e5f5c6fa50","_id":"typescript@2.7.0-dev.20180109","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-/0Zwo+4gpa9H2mXiWJzcu8BFd0hGvjGcp88z109I5pZ+z2shSy/94U5363hpwmxjv1/FtSd06qMDpAkIIqEEpw==","shasum":"8ffb23a38903b7ba7abff12b7d5c10dc2675c987","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20180109.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20180109.tgz_1515479688124_0.049829047406092286"},"directories":{}},"2.7.0-dev.20180110":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20180110","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"c9ef52b9d818f1192ac3146385bbaddb599d5afe","_id":"typescript@2.7.0-dev.20180110","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-hfeNQxcOIk4jkBhKEpwZFTLbv6Z0pctN5NpfO0U25XmM54fOQrgfkEM8oZeQJ+N+UODQYD5/RXmZyyTww3O3XA==","shasum":"7015652744d330bc1fd8a5979617a583145d6094","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20180110.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20180110.tgz_1515566324462_0.6713724983856082"},"directories":{}},"2.7.0-dev.20180111":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20180111","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"40b896a73c2dd998353fa56e6b812a6d4f991ec7","_id":"typescript@2.7.0-dev.20180111","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-CtrIC/ZYWWxah0gJqB6li52VncEjNoD7bWxC+wNUNQEFdooPvgXaHlg3dTmku19D3kVoGV7f05v29cV/jLaC5Q==","shasum":"9d8114598082059d1aaaafdcb9180ee00098ba58","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20180111.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20180111.tgz_1515652724043_0.057831637328490615"},"directories":{}},"2.7.0-dev.20180112":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20180112","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"b529d5ba1f4904649e564e0c7bf3f7aab18b9abb","_id":"typescript@2.7.0-dev.20180112","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-SWck5nYGZU+foIlTOeKNOQX8KdIFVCrneRtk/nZqDbSRA9PTez5KZ6Xo8BAesfhJlbGKTyeE/CZOsmNXbCvlXw==","shasum":"659271ec59e63e0909750bbe7124a12a29f7635e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20180112.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20180112.tgz_1515738905007_0.30535420635715127"},"directories":{}},"2.7.0-dev.20180113":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20180113","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"2f29b7125b615d3cb5dc639c4918754896b301d9","_id":"typescript@2.7.0-dev.20180113","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-oIhiPaxLc+2rIUVtS5EwA6PssygnkXC1B5o/9rqV6J9TIOkQjV9LzLyngYcwbJux82+Xb88kXn+rJiKeOSM9aQ==","shasum":"32ff993fd017b91cfe26c94c1f8e243eeb5098a4","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20180113.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20180113.tgz_1515825494664_0.9777903973590583"},"directories":{}},"2.7.0-dev.20180116":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20180116","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"f0ce80a5c77684e886e341bcbc25056257f4d574","_id":"typescript@2.7.0-dev.20180116","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-qVEa3OSmHI4upo6ig54jKaC4LkjMf5g8qVWva5h5yuoAjk90tSxhvy22oTVd/CgcqkzWLEO/mMQwMFJ+iFomjA==","shasum":"2a77af3949f6752f862c8704310e9da7a0e82db5","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20180116.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20180116.tgz_1516084459588_0.17047911905683577"},"directories":{}},"2.7.0-rc":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-rc","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"f08ac66acaeec6fc747d6582af4d59edef3c4b6e","_id":"typescript@2.7.0-rc","_npmVersion":"5.5.1","_nodeVersion":"9.2.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-uQpL5isp2Pnn0N4mvow85Ob0Nwqr7fD6wME0pmBZ/RYad9OTIry4aTsfnsLa0lnOKvs2FRRm/TRHoc/fgn19wg==","shasum":"bf86a065a3a0be1e072c3fb7d64e8976f33b8365","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-rc.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-rc.tgz_1516212850454_0.9958619659300894"},"directories":{}},"2.7.0-insiders.20180117":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-insiders.20180117","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"3c988e8f5ab4ee3aa8cd8bfb350dd3915b96662f","_id":"typescript@2.7.0-insiders.20180117","_npmVersion":"5.5.1","_nodeVersion":"9.2.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-rYrA2Xtgp5cmytQtTWIhQkVxFHI8YB3BH2wkqixBryLIEef7UXLo5AhlkoD0QLSZLQaFeXPlfW9ouLTD3Rga8w==","shasum":"01761dd795e6ad1d6a11a1e898c9b14d068d0097","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-insiders.20180117.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-insiders.20180117.tgz_1516224459597_0.32260961388237774"},"directories":{}},"2.7.0-dev.20180118":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20180118","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"3fc8f9d367f58833f2650a34aec480f927539632","_id":"typescript@2.7.0-dev.20180118","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-S62mGgKVTo0SmMmNL+dXVAPIyXkpE6hocqIVqJXgrJCtk1wxNvDhL+nYFOHoINul/42osRi4ou7nhN8hdVv7pw==","shasum":"f357c430f93387512cb58e125da080d03862bcf9","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20180118.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20180118.tgz_1516258721712_0.3364407478366047"},"directories":{}},"2.7.0-dev.20180119":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20180119","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"ac7b87cabee6c0c12d9cffa30226f1314dff778b","_id":"typescript@2.7.0-dev.20180119","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-sP+ia023Zxogr8deze5FNraOKRLC0IBm4B4VSEQ47z2el0HLu4gkvYHZ7R4kPKlpBMx4TBMXEEWmiB6x8wRpcg==","shasum":"4e2f4b01a77305a6245c76141454bd5abfbc7e02","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20180119.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20180119.tgz_1516344351330_0.542229761602357"},"directories":{}},"2.7.0-insiders.20180119":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-insiders.20180119","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"eed85737b8371a050664c34f0ea1cfbb022d296b","_id":"typescript@2.7.0-insiders.20180119","_npmVersion":"5.5.1","_nodeVersion":"9.2.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-0TGfCUC0iNfIFMzSvcjFi4lmnZj9/RN0neZwzOjKq8GdZn0QfqAqjYGtR7sYicURUP8KKRlln9YbHICivPCYqg==","shasum":"556c59eaabb0758dd1a2f0b0602a355746d33277","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-insiders.20180119.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-insiders.20180119.tgz_1516403068172_0.9395666511263698"},"directories":{}},"2.7.0-dev.20180120":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20180120","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"a7c53c70d2d74520483a892eb3e9ca55daf655cf","_id":"typescript@2.7.0-dev.20180120","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-h9m3UrKUbgOulbtb6zU+iST9l+9DtavWV/UCCS5s8CZ80V37dnktZ0ZYFQDyS2w8tx1nNvLhgHxZ7w7qRqKAOw==","shasum":"64470f65617bc9cdd95b23dcedf210f83aa73771","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20180120.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20180120.tgz_1516429878923_0.2897972210776061"},"directories":{}},"2.7.0-dev.20180122":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20180122","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"92bde084c1e5ce42ac9491273dec3e846fc61c7e","_id":"typescript@2.7.0-dev.20180122","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-6TMOI45ftMLMcrApFLB6bAjQpTjb9YhowpXm8l0PoL0Yv+Y62Nlh49/cBmC/bLO45ILUcTy3e7vhHUFV67tw1A==","shasum":"c86ed9a2896f919e09f569eecc2c3de76a2693db","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20180122.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20180122.tgz_1516602521529_0.6360943089239299"},"directories":{}},"2.7.0-dev.20180123":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20180123","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"a3387cc41f2aa7d0266b7d293fd43fbdf3aca1a7","_id":"typescript@2.7.0-dev.20180123","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-zRAc41t9pcm1V05ezznaFuTioIesP4X6meu2ku3HInkLbmFFrxWdk4vsctJlqHXBOK1MWk3PVF4Nq4vepHLozA==","shasum":"7a16e507eca9fd0bf8be973fe13bedd8aef68977","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20180123.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20180123.tgz_1516689111869_0.20407956303097308"},"directories":{}},"2.7.0-dev.20180124":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20180124","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"5b5a00745997768fad7d3a4c98931af179fa277a","_id":"typescript@2.7.0-dev.20180124","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-I/niWDWjeglf84nrCBulBUXdsYpVsqQex4HS0H/v80aO5czXHvNnsWfR+0K9aJNC3Msx586HxsE6ayBVroTwcA==","shasum":"3243ae65cedeeb232c41550ed98e5f21255124bf","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20180124.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20180124.tgz_1516776525273_0.21239947946742177"},"directories":{}},"2.8.0-dev.20180125":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180125","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"3a807db8eee0a3e15a8bc0952fcc0f61786c174a","_id":"typescript@2.8.0-dev.20180125","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-D5kzJ/iG752X4Nko+Ga3B9Iu/96qj2MIiqAhDIVuzMIdVp1Hi7MHrDqzaU/FjLCiiq2OuhBdIRqkk3Vr5a57HA==","shasum":"4f55c6a03a4a366c3c1a2806eb98cd22e6e0842a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180125.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.8.0-dev.20180125.tgz_1516862092122_0.5625560011249036"},"directories":{}},"2.8.0-dev.20180126":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180126","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"cae4bc5e83b38e724a13a3f8d86920b7c167a757","_id":"typescript@2.8.0-dev.20180126","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-w5Gax62G8WFWM/OZrigy5IKWajiZ6r5ujd+IsI86uAECFMoyBBMvRzEG+rx19JKR86Ye8ZAAig+sZ90YWh+08A==","shasum":"a20a22470bb1aa714fe6023ea4aa2b1b0bf50dd1","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180126.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.8.0-dev.20180126.tgz_1516948457634_0.8019342278130352"},"directories":{}},"2.8.0-insiders.20180127":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-insiders.20180127","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"02e79849ef7259a1985391d85faea1cd6d86c3d0","_id":"typescript@2.8.0-insiders.20180127","_npmVersion":"5.6.0","_nodeVersion":"9.4.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-YVhjNsX+6kTkftiqr2om1Rf9OVq3fFux8P32Kph3F60AEp+btcHSTCUNgliM7LxJchUUbWGhIJfUEgDUI/B3jw==","shasum":"ceffc20983754a6127ee7c806676f0b30d0fc1ce","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-insiders.20180127.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.8.0-insiders.20180127.tgz_1517016086052_0.41613950906321406"},"directories":{}},"2.8.0-dev.20180127":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180127","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"02e79849ef7259a1985391d85faea1cd6d86c3d0","_id":"typescript@2.8.0-dev.20180127","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-TIbpsD4IOK38KMpBfUHifMO50tU6zi7rVMTgW3Aa4gb34cweTFlor//LeC14bMU1/HUs0AkaBG1Mk/a2tJ4TkA==","shasum":"289893b34fc86d6ad572b4cbf01e6df815e22fdf","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180127.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.8.0-dev.20180127.tgz_1517034671030_0.5888421137351543"},"directories":{}},"2.7.1-insiders.20180127":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.1-insiders.20180127","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"3815a795b970cb10c8d291180bee0807379a7ac5","_id":"typescript@2.7.1-insiders.20180127","_npmVersion":"5.6.0","_nodeVersion":"9.4.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-JwG57XB+OCV5aWA3mETCR3G/bc/X7qWYDep1Qz8kCiWp3kwgOL7A5Q+NMvDrzjNvtl6g4MYF5XT4TCp/9MgXXA==","shasum":"db1f0d903e86c0867ec5c6e04ef10ded9ad9399b","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.1-insiders.20180127.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.1-insiders.20180127.tgz_1517084364149_0.12700343527831137"},"directories":{}},"2.8.0-dev.20180130":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180130","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"6fadd4888df8eb9b984a1a91ee97fe763aced3b9","_id":"typescript@2.8.0-dev.20180130","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-vpUMJLlpBucunsK0M+VzpVzhTF8Eof+/k9UhoK35YZkIAz0J3VusAgE2GGy7SdYHrsON58Yv/yVrq9q23/RLvw==","shasum":"69df189a9ee5c9e65899a9d505ad7b34eaa2023a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180130.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.8.0-dev.20180130.tgz_1517293926746_0.23661555908620358"},"directories":{}},"2.8.0-dev.20180131":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180131","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"6419e7ca4fbed1c32d5b752fa35f60d973a39ca3","_id":"typescript@2.8.0-dev.20180131","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-oF6AgiagZhSKUWzig2eKVrAgeWBsxOIt6vd6Zb6kAkYjLccDQtMUm0877C1is/9X/x3GhntxYiApx99U070iXg==","shasum":"358c965092a3f40db75e6dd24f43307f6adce7d6","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180131.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.8.0-dev.20180131.tgz_1517381295069_0.23462358978576958"},"directories":{}},"2.7.1":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.1","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"0951a94a61dd6f1d4032ac2a549444d347d4927f","_id":"typescript@2.7.1","_npmVersion":"5.6.0","_nodeVersion":"9.4.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-bqB1yS6o9TNA9ZC/MJxM0FZzPnZdtHj0xWK/IZ5khzVqdpGul/R/EIiHRgFXlwTD7PSIaYVnGKq1QgMCu2mnqw==","shasum":"bb3682c2c791ac90e7c6210b26478a8da085c359","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.1.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.1.tgz_1517419329317_0.8297794633544981"},"directories":{}},"2.8.0-dev.20180201":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180201","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"f96c04cb2b450625190722f92eee7b7db268787e","_id":"typescript@2.8.0-dev.20180201","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-rJoZuRqxr2aNjlud7NoeMARbY7/bD1AtQZjWIL8ONzr/Ym0FWpuu0f+t0zv1bRx5aZFue1cwFXw7Z+Gbvv6+NA==","shasum":"b4f4d5fdeab745ba4a9898542d9f3dde31ed9994","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180201.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.8.0-dev.20180201.tgz_1517466988864_0.5271698676515371"},"directories":{}},"2.8.0-dev.20180202":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180202","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"06c5d393b59d3ac7734e11aab73e16d01cd2ca73","_id":"typescript@2.8.0-dev.20180202","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-w9o+8TEMPx8mXmRVj4glcL/DtVnQQMNRrZOzkO6AESXkj+P3ifDVIB9fbeuHkmwGb+Yt23Z6fNT6XlUrDCKzSA==","shasum":"09c96851af6e29f50f10a877c5726ae1a94761b5","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180202.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.8.0-dev.20180202.tgz_1517553658412_0.5032443227246404"},"directories":{}},"2.8.0-dev.20180203":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180203","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"89de4c9a3ab3f7f88a141f1529b77628204bff73","_id":"typescript@2.8.0-dev.20180203","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-YzAn/qLiytIjeYMuuAviZeyrW31O3rvTC36lJ5CSIKRAl2C7r1/hcbNLNgVoVnFrpyvCuwKPYQnblqszhf9bPw==","shasum":"75a96b26dd3f438143d9ef444ef57c33292f8e87","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180203.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.8.0-dev.20180203.tgz_1517639732544_0.8922425315249711"},"directories":{}},"2.8.0-dev.20180204":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180204","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"3ef1b56ee9afc7ceba7e3d5f25081ca09882131a","_id":"typescript@2.8.0-dev.20180204","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-0OIYj+jIWs9T0H0k5oHEMz0l0AvA38KDFEpd6RrIxTEpvfDPmCMHELpGfF/7bVwtyODrvm2I77z3D8tOintFMg==","shasum":"5cb08a98792693bad7ef4c184111777bc9dfa754","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180204.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.8.0-dev.20180204.tgz_1517725765976_0.01191381667740643"},"directories":{}},"2.8.0-dev.20180206":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180206","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"10dfb93299d3d6afd12cf621d60ba1aa27cc0809","_id":"typescript@2.8.0-dev.20180206","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-QjAB6EIinOa5znHR8GLbFwDD6bTTyoqIOSCBuX6xTiMQQFhpAxViP5Aux4DzpdYz36qG3mqAVJKICJAw7qF6eg==","shasum":"a62f6b732668b57a1b2e44feedf44d323821ea45","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180206.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.8.0-dev.20180206.tgz_1517899174846_0.04756855615414679"},"directories":{}},"2.7.2-dev.20180207":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.2-dev.20180207","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"^2.7"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","gitHead":"24fcc3f554bf32d8204128a88ff63d7a8c4b2877","_id":"typescript@2.7.2-dev.20180207","_npmVersion":"5.6.0","_nodeVersion":"9.4.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-6BM5tdFCVxMNWdgq07rDZo9nilDCwen3oz70q9aoxsCCtm2/gjWJ2q3NisgEfGglgKJKhAFxuMV6GrpWp0SkOA==","shasum":"cce45b8a291be54342d10947a7c5745d38f5b373","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.2-dev.20180207.tgz","fileCount":73,"unpackedSize":36370918},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.7.2-dev.20180207_1518048730386_0.17862674609605445"}},"2.8.0-dev.20180208":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180208","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"871e71d4efafb128c5bea4dcdd262adf92a1e72e","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180208","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-iGasZX0HPnUQwkhRuTDNX1P2HWRozq5fugCLaBFe+Jc/y0S8/DKjhaRetOrcsaXrP4bJyRqxX9H/a/gnvV8SpQ==","shasum":"ea47e6f7bbf1b6c154670b450c9e5b794ed94013","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180208.tgz","fileCount":72,"unpackedSize":36387151},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180208_1518071891845_0.4712530538694193"}},"2.8.0-dev.20180209":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180209","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"868a9ee117173a60167626131a78eec00f19b716","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180209","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-wGZk9O/i+d3IlCyvMaQhqMAmop5JH57QeEPn/b5BzZI91tRcXwDo+aSPdYWf72BIpK24KO7FXXzr07Kc/uxPKg==","shasum":"28d7584c611dbdae9f839864c8d1a1d5a31a1bb9","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180209.tgz","fileCount":72,"unpackedSize":36398211},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180209_1518158244778_0.05520770015332088"}},"2.7.2-insiders.20180209":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.2-insiders.20180209","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"^2.7"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","gitHead":"24fcc3f554bf32d8204128a88ff63d7a8c4b2877","_id":"typescript@2.7.2-insiders.20180209","_npmVersion":"5.5.1","_nodeVersion":"9.2.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-vdlhXAfjTgw6FVUYJKoCnatQuoluUv6dqXl5qV4IXInFRzC/8nHysxUSZG14wrunMI3FsejI2tKmzBLrhw6hBQ==","shasum":"f5fd92cededf56e8d20f7b49f75d086a80afdf3c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.2-insiders.20180209.tgz","fileCount":73,"unpackedSize":36368095},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.7.2-insiders.20180209_1518217333927_0.3502067756041636"}},"2.8.0-dev.20180210":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180210","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"57d94b96612ef7e9c6138de9c0cc8ba4715d1c19","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180210","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-E6KoA/iaDIX3J0D1jN/qJfdUTkpuCfgR+oC6o1aBsfcwou2ZLco5k9M9O39lekFFmgT7JttPMQoaZputbu3brQ==","shasum":"aaed45f60c53ea6c866bc9992eb56387982919a2","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180210.tgz","fileCount":72,"unpackedSize":36426156},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180210_1518244738675_0.7204054218979552"}},"2.8.0-dev.20180211":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180211","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"611ebc7aadd7a44a4c0447698bfda9222a78cb66","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180211","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-noZFjJ9q+hdgtSi9oz0HSpe305IjFf5MBuFeioj7k7y3Y1rAOE7KgfBYoKBuVpuPENHzCk4EJlv+nAl6clBw5g==","shasum":"864c01de310ae18349b631f77b2e067604e37560","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180211.tgz","fileCount":72,"unpackedSize":36439292},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180211_1518330739674_0.8676419419039227"}},"2.8.0-dev.20180213":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180213","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"74f01abfcff60806e87f2af5ad31ffd425af806f","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180213","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-U8OjhKh3mbQVYc6LIKNL0VmnPD2gMY0FYVaXYxBAKBY0lyMApcNY6b67BY2ifyn3s9Mj6ZhxPPnqx+PfaC68gg==","shasum":"c04f5189ecc1feb29e40318ebcfc396fbe8ad832","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180213.tgz","fileCount":72,"unpackedSize":36409620},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180213_1518503766125_0.9299734923369067"}},"2.8.0-dev.20180214":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180214","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"80464e8ff145bae5f09253f626d94556f2077f0f","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180214","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-B8FazLtI2OX9uVwiyEXk6bqtz1HPjWKYFR5r6C5V4+EQyMzkGPVtdK/JzD3IID4ZhcZrA42sBJReWrzVHJddcQ==","shasum":"cb60dfd8a47d15200412f29310d6cd28493dbb08","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180214.tgz","fileCount":72,"unpackedSize":36421845},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180214_1518590145393_0.08998105691341252"}},"2.8.0-dev.20180215":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180215","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"8518343dc8762475a5e92c9f80b5c5725bd81796","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180215","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-JoMYuK3tVVKtAIpC4/6Nr2PszRb0CUlK6GevpyZN4EbtuynJ9W4LT3UoOHXTNDkf3e1QGm5A0a74YZkVKQP/JA==","shasum":"2baf13be7c234a1a79a77552bf015da31e3fe4b9","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180215.tgz","fileCount":72,"unpackedSize":36422127},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180215_1518676784461_0.5078019503200384"}},"2.7.2":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.2","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"^2.7"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"90e6f4984a52c6e403d2b799492ea81fd5d9dd71","_id":"typescript@2.7.2","_npmVersion":"5.5.1","_nodeVersion":"9.2.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-p5TCYZDAO0m4G344hD+wx/LATebLWZNkkh2asWUFqSsD2OrDNhbAHuSjobrmsUmdzjJjEeZVU9g1h3O6vpstnw==","shasum":"2d615a1ef4aee4f574425cdff7026edf81919836","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.2.tgz","fileCount":73,"unpackedSize":36366737},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.7.2_1518720313356_0.35853084358629217"}},"2.8.0-dev.20180216":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180216","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"cfc234f959db400023e303ded85c2566408d807d","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180216","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-M2//dOMpHN0cWCuKsnHAbGhk66UX+0MBQ/stN9FlVIs1mewYO+hXeWmfiHRv1KWrdgI8lADPFofvGKl7hjggGw==","shasum":"450849396dab789e8d1added80f08da9115347e6","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180216.tgz","fileCount":72,"unpackedSize":36413563},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180216_1518763327190_0.6523202713183918"}},"2.8.0-dev.20180217":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180217","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"b3edc8f9f4d9cf4203c4c4493e4f0f3dc96c845d","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180217","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-2eAO3wEwHhIQtPuonZrxcvJo3ZaiwIRmMM1VkTKOr0GGm3rhboPYxaNWEYXKjkYHy+WELrMMKCAJkzlcSwwatg==","shasum":"d695c2e459d3f66944f364019cff6ed65ac260c9","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180217.tgz","fileCount":73,"unpackedSize":36521242},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180217_1518849410911_0.39801835054802814"}},"2.8.0-dev.20180220":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180220","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"7e908dbe91a401102535630d63425d90d9015c0c","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180220","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-nGJSSYmAmbhxFBs7Din47ldlRWjibp5s+ysmIRmVwDGJ8u6bVZcEqV/Tnh0cXbebEvQLp4C7xlstF21p/l73vA==","shasum":"5ac7b8f82c6adb4ba000bcdcebe99db0bf71f950","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180220.tgz","fileCount":73,"unpackedSize":36522665},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180220_1519109059547_0.6176488917846343"}},"2.8.0-dev.20180221":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180221","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"4833657c335bcfbc16975437ae3639c32ea148c5","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180221","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-V53SRiHY7DtoUx8j2aPdyeAZLqJ9cIFdzEPZMKbAfvAsxSXCEZ8v/Zz/cw7g2RzwNvE62kM705bKRw5LgYLvIg==","shasum":"6f86d3ade73aa553582ba66accbf613cc1a348f4","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180221.tgz","fileCount":73,"unpackedSize":36520782},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180221_1519194942654_0.9404990572442904"}},"2.8.0-dev.20180222":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180222","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"95213f00834ca380627f2a810ae49a50b281d86e","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180222","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-K7RvdG7MuggHhq19XmjTgfXyFzbekUlwmqs8NY4RsTJRBg0dKHLofHkx7JdiESNSyq7aw9EH4zPLWQJ99f3BHA==","shasum":"50ee5fd5c76f2c9817e949803f946d74a559fc01","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180222.tgz","fileCount":73,"unpackedSize":36535988},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180222_1519281553584_0.5102318370466847"}},"2.8.0-dev.20180223":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180223","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"e8fb58709716c980326615047d34d7902c64af3e","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180223","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-RcoAg+IpPWgIObKhfgTZlq5OlQkcOzE+Y+6zIxakVrv8mhq1YOHdjgNLrSmD8PjyzkbIj44/dWxvuI2bxzGVAg==","shasum":"bd069be8684dd1ab76c183ae8ef4ee49d7019492","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180223.tgz","fileCount":73,"unpackedSize":36528369},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180223_1519367710819_0.43793163817051717"}},"2.8.0-dev.20180224":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180224","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"b31aa4e012fc4c2afc9c2200f18b9e79edac160b","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180224","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-fbkIRWQBJ2Iwgjev4ekCuHEqNJEgSoc18ER5gHiaO9HiLuVZCCQBuEKRzDd6EZaQ3EYn3T5aQCphdkJsdTX2NQ==","shasum":"15fcc62103d2e5bc34dbc3615c3b781c09db440f","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180224.tgz","fileCount":73,"unpackedSize":36569255},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180224_1519453896092_0.9886814855552231"}},"2.8.0-dev.20180227":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180227","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"32c63a26284c0fcf6dfbdce709f3da680c2940d9","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180227","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-0SnnkCkO+ZxW6un8Ylyd1+q2gyPYoev3DGWJAhpkQr/P6RqmYd8lHuZ/T8vNXCPfUaQygJu3rPLMNMGP+lSnEQ==","shasum":"8cecb57a101499bf024ebe4b1fa5a5873d68499f","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180227.tgz","fileCount":73,"unpackedSize":36607414},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180227_1519713667984_0.6264634322223994"}},"2.8.0-dev.20180228":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180228","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"c1128d6957c7e60f54ef6b7c5cd7e1308fa2bb69","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180228","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-4T/VzD14bhgljLb5S4civ2CuSE6pG0i13lvMpizsCteImSpWWesqKbgpPoxRdlDUqBpEUzmUe2Ivv/K+eHygsg==","shasum":"b10b5b25210ab3cf56ce563c22adbe1aad801722","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180228.tgz","fileCount":73,"unpackedSize":36609268},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180228_1519799880089_0.7323577842893272"}},"2.8.0-dev.20180301":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180301","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","gitHead":"d0cdeef51206b7fe877a2953550067f4e11d1546","_id":"typescript@2.8.0-dev.20180301","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-lk3/1760gfEGP/lHtEm/hZnXx4LQAAyYz/5UufMWxMJ3jk3WxFaeThI43QyuuikBg6RdxpnYRsei4OyyzjF3gQ==","shasum":"ada6c617e5d592a90bc67c4f68e953b41682c4a9","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180301.tgz","fileCount":73,"unpackedSize":36609585},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180301_1519886880519_0.46640639564738184"}},"2.8.0-dev.20180302":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180302","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"dfa1a90b25b0ea171470de9a207075948cd34eda","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180302","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-oVgvZ/Erwb0XTz1nGqcFe7PxetVEpLVZxUEFtRUgMmT4dWrMnjpaWfc23JHPIMvBm3eP8cWRhKhcuOYIEjXWmg==","shasum":"e40c3be7aeac0bfce3c695e3043cbb2c42f99fb9","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180302.tgz","fileCount":74,"unpackedSize":36623418},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180302_1519972572046_0.5904230102353956"}},"2.8.0-dev.20180307":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180307","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"1e06637652ffc05c79c05e4112cea7d561cc17a1","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180307","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-v8gWVik3uKhHSzx8VEKDR9t/jAEtJrxgwBde9hbt6re579n/xjB7ROUCzvcy9Le4BzxAQGmOOP7HsQG+h4Nvzg==","shasum":"9fb3f53fecf6a84e17c1d222f216bbfdcb381a92","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180307.tgz","fileCount":72,"unpackedSize":35498315},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180307_1520404948670_0.0708791791311345"}},"2.8.0-dev.20180308":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180308","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"88ba1ef2de9674fd6baae67cfc6aaf04cf63891c","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180308","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-UI8bxYQmgCSdS+Keh7w7KTXSbsJ56GFRHeNxhpAyhrEuP5Tf8pikoAa71UaPXZJBWnP0ZAscHlXjrPlrfwk4Jg==","shasum":"d089f067fa8b7190984bc2ea340679bbddc1bd62","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180308.tgz","fileCount":72,"unpackedSize":35680538},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180308_1520491837093_0.8298272053837825"}},"2.8.0-dev.20180314":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180314","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"8d172aa353787a54e0cfeaaa114c290f7dde6b5a","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180314","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-WDW4Dn7D6Foz4Q/1HbGurWav2AVT8WKIrzrFcS1obdTV+7yfLdI5O+iAQHunl/Lc1pDAGORpF6NeMDbzpX/1fA==","shasum":"f22fd0d7d2f28c2b5b7fc2eecb84df0608aa1efa","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180314.tgz","fileCount":72,"unpackedSize":35888463},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180314_1521009486549_0.4085662925159581"}},"2.8.0-dev.20180315":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180315","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"0666b281b0a33bfda98edb982af71d5e541f7468","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180315","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-oeNSiBFB4v53b/2j3ZhocSUs4qRjf/quv3Kw6rZGdz+B53IrWWKAYH1BmKk9Vvnk/2Q1GZNOvlK1oSOvqp9/iA==","shasum":"8e2e49131bdd21b938b5c51e04f9cd068528907e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180315.tgz","fileCount":72,"unpackedSize":35900248},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180315_1521096424294_0.1749125748960736"}},"2.8.0-rc":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-rc","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"b5dfad1f61b188c96b86899079e727455f4a8412","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-rc","_npmVersion":"5.6.0","_nodeVersion":"9.4.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-PUUMWd0sLgmrLd+zRxBgHC1sCfkMvkAid48gCwhAULMxwjbYFyHkYqF1AOnF0kThXWi/K2jb2nBmA8kunRxvWA==","shasum":"a0256b7d1d39fb7493ba0403f55e95d31e8bc374","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-rc.tgz","fileCount":71,"unpackedSize":35869707},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-rc_1521147790772_0.34349149110103494"}},"2.8.0-insiders.20180315":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-insiders.20180315","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"b5dfad1f61b188c96b86899079e727455f4a8412","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-insiders.20180315","_npmVersion":"5.6.0","_nodeVersion":"9.4.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-IQrctc+qh1AA7ckc9W/mZEyd3+O1xTH9I13eLWd5Nmri9WL3NUFGpL3pPkc8CWYpAO8BForoM1brS0ZKZqk2gA==","shasum":"be9282e0240f688109252d2e553ecc06120a8719","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-insiders.20180315.tgz","fileCount":71,"unpackedSize":35869812},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-insiders.20180315_1521157986122_0.9365604216947683"}},"2.8.0-dev.20180316":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180316","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","gitHead":"19ec83fcdfc756aff805490fd1d1ab0048b56fff","_id":"typescript@2.8.0-dev.20180316","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-ojjBNFI89XCgC1xs8+gbDDvbm69M0TKcpkhlZTkrSpjdSZEvBl6VRQ5yh4ea4JaV5SpVwIMiR7K53SQd8grvvw==","shasum":"b33818a7e842d127a9af3f5d51d30b81df4177d0","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180316.tgz","fileCount":72,"unpackedSize":35899829},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180316_1521183224529_0.4524455217649823"}},"2.8.0-dev.20180317":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180317","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","gitHead":"bb23e9601f5ea0b4fe1e97545ef01535fa18a23d","_id":"typescript@2.8.0-dev.20180317","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-CorxqJ2TC+ROURlNOD74zhgLnWE0KNwI8ZDB0g099DsEr2H9l8YDftcj0iBmDlvfLcZUIaidwG7lU4jAp6QlHQ==","shasum":"bb9a0130f6e8953c0afc7c568b1215b80abbd791","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180317.tgz","fileCount":72,"unpackedSize":35902487},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180317_1521269007082_0.1722882807060031"}},"2.8.0-dev.20180318":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180318","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"c48662c891ce810f5627a0f6a8594049cccceeb5","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180318","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-3yf65OziJSNJhL5PYUqLNr1Bm7wwZA6HJ/hcMiu1o33MIZiTTWKCy2IzE9932KQYqmbPLZxPT4RS/0Q5DBJnWA==","shasum":"3216a51abd61cdf45c0387bc180f6de556916448","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180318.tgz","fileCount":72,"unpackedSize":35902456},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180318_1521354719862_0.7507660245307048"}},"2.8.0-insiders.20180320":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-insiders.20180320","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","gitHead":"0f024f5e32b7b853ae962a005113c51bb468e418","_id":"typescript@2.8.0-insiders.20180320","_npmVersion":"5.6.0","_nodeVersion":"9.4.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-4wlGlEyue/zAplalS1GOzaoP9lNTUh5ewLV+5v3s7rF5W0q9o5GdWUSjkpnzh6WM23AXBKHq8tmn0q5Qs6DFsg==","shasum":"30fb1dd0230a271a9b174820feafdc9d8da2497d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-insiders.20180320.tgz","fileCount":71,"unpackedSize":35884741},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-insiders.20180320_1521518185952_0.5572307791416204"}},"2.8.0-dev.20180320":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180320","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"6aa0afb87d97e0f03938d39e488c69d03d663242","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180320","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-rvTiAsXzIeZpifulDClAJsD6CgsaLIj/BhnO259Uxs/zjvtDz7PG6Ai6X9c3xpfnU3S5O7TnCX7xq0cdDUDGYw==","shasum":"4fe6a6509e84a77339dbf512e81ec35314e9530e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180320.tgz","fileCount":72,"unpackedSize":35902500},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180320_1521527736125_0.04096175080974329"}},"2.8.0-dev.20180321":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180321","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","gitHead":"6a86534d815325c3945c560d4252c666ea8123ef","_id":"typescript@2.8.0-dev.20180321","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-Rb/PG2seK4smuKLNlN5xiTtorVjkRKKMGuCNmwWyEXcZJlaLyKhlyYh4/pcbjVc6e1Im0TLTFXapSak7XBuW0A==","shasum":"7e6f299b2a34e4171c5e25ce98c8986b8c266207","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180321.tgz","fileCount":72,"unpackedSize":35930465},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180321_1521614280321_0.5289052819885991"}},"2.8.0-dev.20180322":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180322","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"16697f6c7dbf411637fa975385ecf43ac295ec82","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180322","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-dSYa9IAoj3CRAxtKx9+cSCQLetB7OLtHXhvQWeWY6PPIXvbpAC41ulQWX3TUAkMYU9NS/kGIU8TFM9VFpinJTg==","shasum":"4f67eccf5670b17b062a4aa868e71ea94ef5c7a2","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180322.tgz","fileCount":72,"unpackedSize":35939999},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180322_1521701223562_0.9930831365343977"}},"2.9.0-dev.20180323":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180323","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"78c12cdb9de090b4be528571ffb5434ff42dc133","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180323","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-0rhbdcxqnuqvOuJ2t/nVtk5lX02V2qwKCCWQuFpVhOJU58ALieTlAo19Y5XHV99pbaUpGwWYp5zk/Go5ahSpFg==","shasum":"9b33b1366a2b9af88e5e4de9a8e502f1df8b5aad","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180323.tgz","fileCount":72,"unpackedSize":35968734},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180323_1521787251847_0.671677178528191"}},"2.9.0-dev.20180324":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180324","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","gitHead":"9557e4ad961c97e553e85e94a08f39ff72d3218e","_id":"typescript@2.9.0-dev.20180324","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-NWWMdVWetK2y0QII2OWWHZaZMRrGFCVe+fGFRlo6ThhqSIuxnkbFGiIx8WUopMX5KUQq9aTgJGy11I32oqCd7A==","shasum":"40c59f9a8ee09b788e2ec9b9abbd24a85bcedafc","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180324.tgz","fileCount":72,"unpackedSize":35972461},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180324_1521873741215_0.16030879834903078"}},"2.9.0-dev.20180325":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180325","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"3710218d95e5dd07e9452a6d8a7a80149632062a","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180325","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-w42V3MoOXi02+t/dd+WsuF6HRLDSJACeiFHxcRfvsB0INsw7xu9cGuh0fwwOYQK8HwT3yyKD4hVts8v45Ki6zg==","shasum":"9c78b44c647f58a276a7e2317cd0e89163d87aca","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180325.tgz","fileCount":72,"unpackedSize":35972789},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180325_1521959643737_0.9198226384111372"}},"2.9.0-dev.20180327":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180327","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"dcbc478efa19435e74cb1cbea6405b336533e8d7","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180327","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-p31rW79yR+Nkf9czoz4qKnBkI44huOZrRyYpk7gaAnO4Z1La0uPilAy9ZwsfsUIdppeK6FP4UCN1J30VreJBng==","shasum":"f27ca1d6761c7de5e530ead9c9321b9f66c13d1e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180327.tgz","fileCount":72,"unpackedSize":36096916},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180327_1522132356582_0.4272406707503891"}},"2.8.1":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.1","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"b28e3b09dcce0e0d9100336c55a3ec27a3eabf41","_id":"typescript@2.8.1","_npmVersion":"5.6.0","_nodeVersion":"9.4.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-Ao/f6d/4EPLq0YwzsQz8iXflezpTkQzqAyenTiw4kCUGr1uPiFLC3+fZ+gMZz6eeI/qdRUqvC+HxIJzUAzEFdg==","shasum":"6160e4f8f195d5ba81d4876f9c0cc1fbc0820624","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.1.tgz","fileCount":71,"unpackedSize":35900541},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.1_1522167629942_0.3962771008981971"}},"2.9.0-dev.20180328":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180328","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"66bf5b4e9d2796dd03f5a5b65a9f5b51f3b282a8","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180328","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-Ubfmv2U23rqhYDKWH/j1YYnlrcGxmJj/ZBK+IeNfvkuaYTIPT+8+4SrMyfgeDe37aX4V8G8zkXx0Nga8OCO/SQ==","shasum":"7f38af87cba211e3a01933cca6cda830389b22f4","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180328.tgz","fileCount":72,"unpackedSize":36109626},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180328_1522219433359_0.12771270839023408"}},"2.9.0-dev.20180329":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180329","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","gitHead":"e40f2943b1b6f96710db82555b29c760f2f793b0","_id":"typescript@2.9.0-dev.20180329","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-XBp1BUOtS2P2dqIe5wxLaQuyV3NfOUDX6aWMPk+Q1lYIdq/lI8k6KQOQ2BEA2jykxYuhyp2mKVvC9CzABnHLiw==","shasum":"7bc0b6fa6cb6b8367b0e37e995f2b3c0d542609b","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180329.tgz","fileCount":72,"unpackedSize":36100458},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180329_1522305426304_0.7658409489236728"}},"2.9.0-dev.20180330":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180330","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"7714a2bb5be7b2ebe04601f5b4e518ce07057408","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180330","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-JWXn30Tu6cRkG8feC7Qr+Tkm0A1iDlpSo9dBcVaK+mGeaegnfeG5aBzNG5JMTYiG8UMuhDqQe6q2RvPucRybAg==","shasum":"7c3bea24f39e9d2bdf8114d938ddf7a6b02d8861","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180330.tgz","fileCount":72,"unpackedSize":36148855},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180330_1522391363946_0.8406185879991561"}},"2.9.0-dev.20180331":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180331","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"9b558f95350a547dffdac96334157d3b2f74762e","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180331","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-QO5Ie2y41KStRdnqQ5Aw4RHFOfu/jyu4K3ThoTqSem0kDDVVHI+MitTuk7oa5h/e5VrCmYZ9QykPyO0J9HSVMQ==","shasum":"0e2c40306a3e41b72d9a0619ff18a24ddafb8e71","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180331.tgz","fileCount":72,"unpackedSize":36145239},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180331_1522477747944_0.6931420361844773"}},"2.9.0-dev.20180401":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180401","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"b3829523b2b2928b15237206e171a5465dc2211b","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180401","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-OLhMZJekddnPK/VF1iFX6hmUm2jdcOjGviTS0zqcUQeqtsWhn8zog+uxj8AT6Ri3Jok5kyQHKBT6pNO2JG/ydA==","shasum":"30c7fe88afddb11bf3ecbf6951c0dc6b3d1afc93","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180401.tgz","fileCount":72,"unpackedSize":36147948},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180401_1522564078229_0.8447503629659365"}},"2.9.0-dev.20180402":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180402","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","gitHead":"0fd8fb8697ed88d66cea117e165f68a9ac010e8d","_id":"typescript@2.9.0-dev.20180402","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-3KesGmXK/niHKaJUAHrZTmJ/fLEAgCtG6bWo05VF+b9WLoy+FMNYxuC4bQyaJf0WLydlKHR8RIjE8Z2rK+6Q8Q==","shasum":"a443761d82212ec5626289b72055492d888b9b26","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180402.tgz","fileCount":72,"unpackedSize":36164174},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180402_1522651009027_0.8543317508514325"}},"2.9.0-dev.20180403":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180403","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","gitHead":"ae61ebac8d995dca89728c750914c07c553a22a6","_id":"typescript@2.9.0-dev.20180403","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-RsqEH06pfGHHCAu9crY8LcqLTNGhJCOqDbnuAlK+qPB4KtsFQjaN6Bywrj/J2FEuRfJGow2nkoHA24WOFovjMg==","shasum":"bd53070924f7da6c087aa0d9f955e31b4231496b","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180403.tgz","fileCount":72,"unpackedSize":36243587},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180403_1522738026232_0.7110983833900435"}},"2.9.0-dev.20180404":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180404","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"db74229a89246963be198d8a5c3931b4907b3ca7","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180404","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-UdM6mevKwRvKuBeZqJVuJH7KMqcWII7hO0Wy1hoSv6XFBysKmEVaCS7nImOaz7bubLeKMXpP/dZIsHZRZWg5Dg==","shasum":"a2378f56a3cccd36fd11e717a178a351c40bf53e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180404.tgz","fileCount":72,"unpackedSize":36276480},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180404_1522823567382_0.29864449513291436"}},"2.9.0-dev.20180405":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180405","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"de669cf82754980d35fbcb607f4cb10e2626da39","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180405","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-8okcz49OWZV8AwaRO0xzQiq+0PdrS20k26eopF5sGc3hjM2852LluBw7/uiERX/RF3b4VBUTIb/TZmUtOJFH5g==","shasum":"c204f6d1a8e5263dd3e7f153e25a4cdf0d2693ac","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180405.tgz","fileCount":72,"unpackedSize":36309831},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180405_1522909874043_0.9575367037392084"}},"2.9.0-dev.20180406":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180406","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"2167b244414a83ccec18edc6d88434cf0ace7475","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180406","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-pzUsBB3jZnQfpLUs5hLvI3Pj6+LI1r/6pnodLXIDeNkgS8xLkWQTs2rpfypLg10gidwo3mxABFzu+e9OCU3ynA==","shasum":"9a3cbe5a27a9dfb862c21e5f3f233efad753560b","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180406.tgz","fileCount":72,"unpackedSize":36320770},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180406_1522996205290_0.3835805023152785"}},"2.8.3-insiders.20180407":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.3-insiders.20180407","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","gitHead":"7deda06f644f871f3978dfc0528612c97bb3c15f","_id":"typescript@2.8.3-insiders.20180407","_npmVersion":"5.6.0","_nodeVersion":"9.4.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-9HdFCZSIr3cTedvmmYR3EssSAdBuOqmqDyjSsqcpH5UBG/I488g4oFvUaXP33x7XKJ9lissfyNeUe15lXxzvDQ==","shasum":"915f010e258e51c9539bcf986cfd84d0271d8cab","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.3-insiders.20180407.tgz","fileCount":71,"unpackedSize":35934822},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.3-insiders.20180407_1523060716298_0.7910717543691477"}},"2.9.0-dev.20180407":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180407","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"4170f35abcec2710c4549d0b3a14d39dd9692988","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180407","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-Tg0/hU2hSz+4pb5Lj5+bj1uLldN7C8NO5Ik19WfftMlpeXRyZQJzglV0oncmsXOfN9gG+JC0xnO58YspE6sZ1w==","shasum":"04b2460c4052fc389b7f33c021aa0c465defd51c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180407.tgz","fileCount":72,"unpackedSize":36328534},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180407_1523082732334_0.1576601007776257"}},"2.9.0-dev.20180409":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180409","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","gitHead":"ae0ccf340fddb398bfe1ef2e1522624d47ce9b18","_id":"typescript@2.9.0-dev.20180409","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-yGz04OMwldm/opxRu9xKM9IAw0SalrKTfSX6Ut/4BbwXDHhfSG2fLBJTxREQKHSR8azv9aOBfwhGvIbdc5FaVg==","shasum":"c2a68e9bf45157bdea38c4e68a752350d42440df","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180409.tgz","fileCount":72,"unpackedSize":36328788},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180409_1523255582738_0.9232850703194744"}},"2.9.0-dev.20180410":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180410","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","gitHead":"668c5ff5d6eccc410253eda41e3ec18ed629ccf5","_id":"typescript@2.9.0-dev.20180410","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-0f47t10YM2c5fxEE3opmvok3hlZiJhFYSHpgFt/VgY4BaBf8uRIs1vuZTD53uo5UWpBztzTjbS2Nf0bhhTsQaA==","shasum":"5fb2fc8c3e3169493d9ce59057ccbe6cbfe12c40","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180410.tgz","fileCount":72,"unpackedSize":36349050},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180410_1523342455830_0.8875135115699424"}},"2.9.0-dev.20180411":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180411","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"1fb2a12b0fe01ad327b239625f8333d20f59543d","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180411","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-5YCBzhxdkzCsH3/AWBCiaF1xB6dNs/KGdo1F0uRcouL65YL+d4+/2kT26AoXpFxeRfaeDTqX4Ds0ndYdaugnyA==","shasum":"0791768b1e4d4d10bfc8b84cdf1239050065c859","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180411.tgz","fileCount":72,"unpackedSize":36406439},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180411_1523429677998_0.9531285054448404"}},"2.9.0-dev.20180412":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180412","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"edcf08714515f2a9ff5cbe65f4e8c233c11582fa","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180412","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-QLEitLx9FmompsUejhVTTJBQwikdqFaUDizTtN7rHWb0PkaQ0USjoiJKg+/cPAeB/eLsXv5Wiaf1gy6xCZRJHA==","shasum":"5380b2afb44b720b0d8164f844b90ebd81948a7e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180412.tgz","fileCount":72,"unpackedSize":36412304},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180412_1523515259456_0.19949766421836923"}},"2.9.0-dev.20180414":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180414","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","gitHead":"23ed9f842301ab8c7894823afc7a356da960adcf","_id":"typescript@2.9.0-dev.20180414","_npmVersion":"5.6.0","_nodeVersion":"9.4.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-9wS/WxRJGXYs/EFNS4HrByWi6bGHPMhqEecAS9162kAZkTrwk75C9yU28ZjZ/rTgkXSqgvS3jWxgGhe3Nrkkvg==","shasum":"10193f90523b29802ecb68ecf6199007d62add50","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180414.tgz","fileCount":72,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180414_1523690660845_0.7746904707515669"}},"2.9.0-dev.20180418":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180418","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","gitHead":"0bc6470f1d0b28f48365fdd9ff628192c3e2dcc2","_id":"typescript@2.9.0-dev.20180418","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-PyWtc0u50ypLNWISWq9O3nZ025Ar16d94Ukv/qMyL9AUWXz5MTPvFdyFqPrwyLamoQG3sJlykZQefAFHhIxLlw==","shasum":"a3097c3d478d0ea11068a18e643055fcd74d8cb0","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180418.tgz","fileCount":73,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180418_1524034705975_0.9390557998403479"}},"2.9.0-dev.20180419":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180419","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"238ed7a94ca78350294548a164d75624a787e119","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180419","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-Fe7WMJJlAHWC+s7WKxx84UhgH5mdJirexp3Q7cU+SY6TD07/UtNTT49SeBPuvkoDdhoDDgNLmfaU4b9Q6jJDgQ==","shasum":"ec2f6b1447de34d6357bab8b669eccdc55288abe","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180419.tgz","fileCount":73,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180419_1524120857488_0.12110367807771372"}},"2.8.3":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.3","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"80fff90e919d358dad9e3e1d3a49b5deecd12633","_id":"typescript@2.8.3","_npmVersion":"5.6.0","_nodeVersion":"9.4.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-K7g15Bb6Ra4lKf7Iq2l/I5/En+hLIHmxWZGq3D4DIRNFxMNV6j2SHSvDOqs2tGd4UvD/fJvrwopzQXjLrT7Itw==","shasum":"5d817f9b6f31bb871835f4edf0089f21abe6c170","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.3.tgz","fileCount":71,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.3_1524172828432_0.703407541791931"}},"2.9.0-dev.20180420":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180420","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"2449e8db1c8e956312e2b755a49ab1a69867354c","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180420","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-diqOetIH0TQcgAdyl9mNOd1HOP3khAdFNaoZYPAZEwp63s1TtntmsAZcwdeqDCOsifdBPo776MjBxYkpqTUjOw==","shasum":"c828fdf776f95e858fa8f9276eed27ca4c320099","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180420.tgz","fileCount":73,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180420_1524206483750_0.3751161634890179"}},"2.9.0-dev.20180421":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180421","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"8b0fd95ae50c2b9fb1c00c3fba79babf7def0df8","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180421","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-Kkny/jcMLwNNPcAc8y74ql0d5O88v5FHzQzN9EuFskYPqs3Ynl2TV1KJr5DGTXtCjKmo2ZKIuTdq5zmVWK8Q+Q==","shasum":"b937b164ce73f833f2ed5c36571e238898b264ce","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180421.tgz","fileCount":73,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180421_1524293414806_0.14531038962829057"}},"2.9.0-dev.20180422":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180422","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"eb112ab492c26c6346ea587646dd617093e72b78","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180422","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-ZoshrwzODq7xGMgxo5o1NimTC3+9W+eeSdgiDY6gd8KTtzm0roLk1LlVheUrqGWmpZO8rTdP3tCKsuBIPf7R4A==","shasum":"0957efbad5df6351a187a436d76fa4dc56ac1c3e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180422.tgz","fileCount":73,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180422_1524379032514_0.7413558187978542"}},"2.9.0-dev.20180424":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180424","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"054a6ff354dcb25152babb7a6d230a687abce94c","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180424","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-4wIVBrmeKJyRz/6VDBKMbU9CuuhEcPK6g0IwNPBFnmrAb1zqPGMky/cY+GYdKNZ1vZZdfWedJjQY8dlDRD9MqQ==","shasum":"07fab78bd174a3904a1c3e9391e3bd0b02d41746","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180424.tgz","fileCount":73,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180424_1524551838330_0.5369347857267841"}},"2.9.0-dev.20180425":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180425","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"1f59e6f77a4df9196f83a7ece856cc6d9e0d5467","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180425","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-6t/l13ofVeTSJVD78b20E0rkoOcFPrst5bK9vCGDbbjzx+Ab3HoV7fSTuwB8zMEvpxHwQtR+0kR3XUy06HzwUg==","shasum":"059388a4e82cae7c850259d05625ae493a4c2817","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180425.tgz","fileCount":73,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180425_1524638737754_0.9350712193660844"}},"2.9.0-dev.20180426":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180426","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"76e7d91a2627353dd462dfa563448b731e82cea6","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180426","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-pOZL6v+xwvTMHS3yTMyo1bHyOjQ8EoA+gTDDYHkgit4zkxIVaJvx+0VvN5uRbvpP3h7LfSu9oOhCa1X+WmInHw==","shasum":"d6b8d31c6b874ccd66d4165fd0e692d2a9e0e972","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180426.tgz","fileCount":73,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180426_1524726430478_0.8418876740285621"}},"2.9.0-dev.20180427":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180427","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"bcb5599bf2a1f0db0592f3b680e303f8884ffad0","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180427","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-3PRIPuRUYzlyPXye+VyFBk6+d7+sDKuA1noGRr1BZcQiHfy2d7P9SmJVRM7PnmEYVRZi3ZB8VXn6bcYP8P3t9w==","shasum":"cc3f23532b3b9200e92ba45a9289e6b81cceafbd","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180427.tgz","fileCount":73,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180427_1524811638237_0.06050559668884237"}},"2.9.0-dev.20180428":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180428","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"443c1c7965b968bf7cdf6de1e91c1d29040092c5","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180428","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-3zuY7TefiIF8s/+ZLYHXUYCta4bLx4VmeR0Wao2WkdMoYEudMEJhpvqFKvXgJJBDk8UmtA9ijQlR1F4MgOvO7g==","shasum":"305d1bacd1db81126fb5d7aaad6f6b318d854ca5","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180428.tgz","fileCount":73,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180428_1524898313123_0.9452451964562463"}},"2.9.0-dev.20180429":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180429","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"732661c70bbb50102434186cef31fdf66386cb04","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180429","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-+itL/5p3HG+XOB7NmLxc5ec3wkFmOWGxBXkOulh6PndBGajB7DH8G5ii9riDqFRyxgIERXiUoT3GsQuftJ4g4w==","shasum":"6c94855f9223bad78feca7145f9fdb3ff2e11e07","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180429.tgz","fileCount":73,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180429_1524983824251_0.10242994753790957"}},"2.9.0-dev.20180430":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180430","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"33d20e93216d309a31797671922c2a57345da93b","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180430","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-KaYA4BpYsxHrnsZFs2DS/fhUkv9dTw72WMZBnCT2VFzn8R036PWjK8StbMaNHh4na9DEViGEEFg5bYBF3wDiIA==","shasum":"f69f2482654fedf4f74fca612b63c1298256d411","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180430.tgz","fileCount":73,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180430_1525070453031_0.5919275776029267"}},"2.9.0-dev.20180501":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180501","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"5ea4d3b2bb74a4f1e10714700dc6b91079600b6d","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180501","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-JG/KrrOqBsBdoyJccEXPEwUZcLhE9MhCaX4ahtPZkUgRXAVwW2vDwJpTEKy9lU4F5iu6q7iwgefaVuqgm0pFuQ==","shasum":"f476b65e5f7cc504e4f3928d05beba1298a70214","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180501.tgz","fileCount":74,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180501_1525157644303_0.9092716159450218"}},"2.9.0-dev.20180502":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180502","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"081322ba30b44e3f627aa23aa3b30975c43cc38c","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180502","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-I99c1baksJprs72kkFujvmER3tDLDm0l9ADbPPxOW06+Ohx7jOfoau/Gr/4efPkAXGoKccKfGCcyhaAgGPM9Ug==","shasum":"c0056291fe41778be5da3ecbdf035005bb7b85ea","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180502.tgz","fileCount":74,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180502_1525243774368_0.3855710931026963"}},"2.9.0-dev.20180503":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180503","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"254d284ec0781c9d69b51736a7b29bf62e6f865c","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180503","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-kSPEQCZYCFhmI57l9NRrs2saNPREnNRq6mQsLe2ArPAw4hGLVz3+XjKw9euHiJPWfo7J43OpsprkMXPto8pUNg==","shasum":"26feac2d2120c558fac25b5fe8108a85d0405c4b","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180503.tgz","fileCount":74,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180503_1525329985999_0.5362427884173984"}},"2.9.0-insiders.20180503":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-insiders.20180503","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","gitHead":"1cf1b92889033e56e20f7118c49e9ca3c8514d19","_id":"typescript@2.9.0-insiders.20180503","_npmVersion":"5.6.0","_nodeVersion":"9.4.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-9zt7QrKVs1QeDGir3MipNYadRltXzZDix+mHnWWt9QogjWPcrkWILFHkciAV5PPrVjclEh/a3G2jEmfIR2l2oA==","shasum":"dc5363403e7b384ad85b1a74a96412c36ea238a4","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-insiders.20180503.tgz","fileCount":83,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-insiders.20180503_1525376359340_0.9269234337434782"}},"2.9.0-dev.20180505":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180505","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"1fd1dff5e764fde1d425468576670fc002f534e4","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180505","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-vdQfHeDZ/H2KNfAPGApyEKjnp08+nmj/xy1ZPWHmfrrbfCOEAUDr9rAnmI4prvG2c1FD3TPDwkyR3iCURdTitA==","shasum":"f1202b14d14f97230afbcaf82db447a770f1fe9f","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180505.tgz","fileCount":83,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180505_1525503213171_0.2889804836546983"}},"2.9.0-dev.20180506":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180506","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"0f79b5b6f6ded887f08d0f8935e7d2ee9dfef363","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180506","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-RiwOOSwBvPNtHR/LZpzbTuRhYC2AcCyQV4wgejKHeamLHA6kF3HI5bWwkrbuvhD5vA3HoJCuzFVC2hAz9ecy1Q==","shasum":"e20070caa88fca90227cf040459402611a74e13f","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180506.tgz","fileCount":83,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180506_1525590138012_0.12341186807852278"}},"2.9.0-dev.20180509":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180509","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"ec9c1556ad848298621d4af86f545ef39d445807","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180509","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-gI7oEGFIPMOC0K0K7M+LlOTq4+EYuH4Lsb50m1ZFoNouh3PPfgOVbOnGijBmdNkwVhDfxMTAoUPyWJ41wggwxQ==","shasum":"f2eb8c5bb6e37354fdea089b0fccaadc3fe66e0c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180509.tgz","fileCount":83,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180509_1525903337909_0.947034276177988"}},"2.9.0-dev.20180510":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180510","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"b5233d322d2cf74e65d6b33bdee3e439704a1c29","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180510","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-nKmOhDcdSQ4xAmxEb0s0cuWZPskk/Cfnt3U0AAVU/eOi6AkLeNkFl2/V7A9muss0b/A9oozaPMhratYkBLmtZw==","shasum":"9f039785ce560e221afa418107281eecfe295e0c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180510.tgz","fileCount":83,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180510_1525932684007_0.6054143768960119"}},"2.9.0-insiders.20180510":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-insiders.20180510","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"7271ec12404b8c24d43815838b6a459ab9b9cfab","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-insiders.20180510","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-upTIsxtLLe2FJ4x0K3c/lXItlGAL1mLOnjsdyL+ai8oKPSudTsujSXyeXDqpYTEN0joHEbZflpcntY53Ogc+eQ==","shasum":"2f9c37b904ddd8f8151e5eb25be11a3c4744b13f","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-insiders.20180510.tgz","fileCount":83,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-insiders.20180510_1525978584099_0.35855109921413764"}},"2.9.0-dev.20180511":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180511","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"5ca375c22ccd2589f2df1e167990825fda6315f5","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180511","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-MqdkCsW+5cLKdHLTPSSA1kEFYklh8v8PFWYBSdlPBYCU6SmMJ6RwUoBPwlb+EPSgeivRxESlqat3eTSxJvkxIg==","shasum":"e864f6b9bf9e7f654d26f5401e74b76871f5a8e2","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180511.tgz","fileCount":83,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180511_1526019070890_0.2837050254002733"}},"2.9.0-dev.20180512":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180512","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"d990f294f8703b4d3346b34b7d984cd9f91c2868","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180512","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-IoShsqB7aix2NsKnaKqlCuerZdWp0OHIrWufUY2mfV1vDf8FTmBA49AODKbWySTQCi2YBB6SGqih9FLMEBjZJA==","shasum":"fa4bf0c8cb42ab810d772def0b9244267bd5d80c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180512.tgz","fileCount":83,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180512_1526105457412_0.9875103703947403"}},"2.9.0-dev.20180515":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180515","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"ba4bf21eade396ac0d82ab1278dfddc6ce69c653","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180515","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-tkBul+7ibjTC/gKjz/ggyREb3km0MhbgthAtSEmVjUWP8WGgCWyLnGqzlHpgZN8teu6e69ox+0kLYNnJQ6gzlQ==","shasum":"12cbe6b3d61f6367b6b6b77a0b33f5234b248cb6","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180515.tgz","fileCount":83,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180515_1526364658990_0.1857079249715654"}},"2.9.0-dev.20180516":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180516","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"b4ca23d8f9133036e2bb19e848960cfd8dd8bd31","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180516","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-H2GdFFdcjShV45iYGGkpTOIKVRrjS5agbRimCSkd7GEmMidLxdoot164zTb4qVvYuWAPEXqqAFdY8sVaZhOLGA==","shasum":"8ef56c66b3cfe04e894970323e0905c29f8c0d89","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180516.tgz","fileCount":83,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180516_1526451049876_0.14551511656807414"}},"2.9.0-rc":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-rc","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"2b0add9ff9f9a9a4d5a4056aecdfe50140aa930c","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-rc","_npmVersion":"5.6.0","_nodeVersion":"9.4.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-4dZ8bFgwR7DfIf8AHOETFGCFTHXXgwtfD33sGINcpa6/95E68pByTTssms9VXO0RDDGa8Jp9MreDv/G94OWg4w==","shasum":"c0fe5d7f2445d664538d21494274814cdfad468d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-rc.tgz","fileCount":83,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-rc_1526502776961_0.2974395072342515"}},"2.9.1-insiders.20180516":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.1-insiders.20180516","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"37d2b2b70844bdf8eb3fa597ee4809e7acd31740","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.1-insiders.20180516","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-YFgr70hyhzGTQlDLLzRwblITJKb7X0LbWgZ5Xb8dSoZKxtP5Oj4lLih+eRvUxDHSnIfe4IfA4gUZkbsp9Dc0Ng==","shasum":"aab5261edb2c162c2d0c1754bb3092d4ff6efed0","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.1-insiders.20180516.tgz","fileCount":83,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.1-insiders.20180516_1526512595327_0.6445182984780997"}},"2.9.0-dev.20180518":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180518","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"8c2ed976a5a476fa5007529b20b21b2690805f94","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180518","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-FWW+p6V3heeUJPQk77p2jnBpjZKgjm2DBotA+oVFCpPwrLVoV6sYxlq+73jFpbR56vPdRa+eaMHxxFZXVNuJLg==","shasum":"7c709cb5d59e60a5e346cc5856277fd7b8ced68c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180518.tgz","fileCount":83,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180518_1526623871848_0.32862635005474683"}},"2.9.0-dev.20180519":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180519","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"6103f9f64457f2c6394210d222375102a89ba01e","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180519","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-WQKPDm2m+LlNYCpwsi0AClQW+S4JxcEzYIoBVw+259yL3JPDRok5a9J+3jKh+2u54KVdoKTSVNJdp2WxvMtZAA==","shasum":"ba158b88bdd4e3d38552e18022f5a05c8d3995f8","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180519.tgz","fileCount":83,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180519_1526710191611_0.2310521636405669"}},"2.9.1-insiders.20180521":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.1-insiders.20180521","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"8995126563f1bcb441526b4f8490bc791d7a4b5a","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.1-insiders.20180521","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-2G7xKUZjn5WVx2cUNas2TdSpZN0foJMnYo8c1r18cfKe9zD0yu8ZvHQOhdqOSCfkorbsDsYejBKVX3va/UmUrA==","shasum":"37e9c05f00aa99864c3f66781e607ae0097c2b0a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.1-insiders.20180521.tgz","fileCount":72,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.1-insiders.20180521_1526945278227_0.5333623198624629"}},"3.0.0-dev.20180522":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180522","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"a9e89ce3f1127a92b3a60057a655862844a76f70","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180522","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-/8nx63FE39r823Z07e9UnTQ2/L50iu4EWaonNxU7zY1BPHjl7ezWK1tAP7pAJpGbxdCAt+j0Xt88/MqdTM57rg==","shasum":"9c9fc115ec0c5e727d7f291325b64fd5c891c3a5","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180522.tgz","fileCount":73,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180522_1526969532713_0.9753501860387337"}},"2.9.1-insiders.20180523":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.1-insiders.20180523","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"4144f45725640d603a2eb310efc61c77d0777ca0","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.1-insiders.20180523","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-e5ZJVtF111MZy+76amIxpz64GidfW7s5SrTRXd1x1dUax5XiKYHPSxFCMswawpvQrplvhBb++Fmn5QRd+SThKQ==","shasum":"ea74ee12a800148a87d48a8fce526bdc643cabf9","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.1-insiders.20180523.tgz","fileCount":72,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.1-insiders.20180523_1527119771187_0.2746842855157403"}},"2.9.1-insiders.20180525":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.1-insiders.20180525","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"30415cd4f45f0fb035d9e0b25d1b5d9bf6047a02","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.1-insiders.20180525","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-6f+/9JF7clvPB43hmpdkAY5pbmPP68B5SUtJ1nd4ss15H2BdouF7tHvQYZD2+3EC2syWRo35eEaToVCNckwugA==","shasum":"f28e73af2b9f2411c872a1a79a7a84ee54e5f7d8","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.1-insiders.20180525.tgz","fileCount":72,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.1-insiders.20180525_1527212243865_0.5300665196855372"}},"3.0.0-dev.20180526":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180526","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"927343cf3a34cb14b03a06a8e2a2295c8bf18c5f","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180526","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-xwPtyCVyUqg+OzRiNkg+w6YrJD7vJuXTlk0E1bJTHJVF8PaYqInmHmEJEflQnnPyRRrvtA+BXwF5KKicLtlvPQ==","shasum":"98e2ad71ce10db18a6b2e0d350e0f739e5ae896e","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180526.tgz","fileCount":73,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180526_1527315067240_0.2327914426673281"}},"3.0.0-dev.20180530":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180530","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"364fce393d6f53aab08f088c022faebd669b0097","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180530","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-N0EmFD2sNkPCvjIHheTiwVL/ZSP7s3ZF1mRnSbMkfBN5b+yyIYhed7K1vnEQCByO5ZmhVZg81xidcBwhuCXu/g==","shasum":"f85c80e74b6271375cd2d91e4a735b852f05cfd0","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180530.tgz","fileCount":73,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180530_1527660724748_0.5382579471352196"}},"2.8.4":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.4","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"c59ea304bc49d93385c22be7b8d2b401891ebc04","_id":"typescript@2.8.4","_npmVersion":"5.6.0","_nodeVersion":"9.4.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-IIU5cN1mR5J3z9jjdESJbnxikTrEz3lzAw/D0Tf45jHpBp55nY31UkUvmVHoffCfKHTqJs3fCLPDxknQTTFegQ==","shasum":"0b1db68e6bdfb0b767fa2ab642136a35b059b199","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.4.tgz","fileCount":71,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.4_1527710633913_0.29202417413702975"}},"3.0.0-dev.20180531":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180531","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"576a7333787133b08ab1af72c2409ef869b2ab1e","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180531","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-KOb6ecZRRWEGRQldW5z99TbIqxVujDxwHTWqzssrGPJLh0rNvORPaGVyLxlijZXbWfADYyurns0Ezmoe1ge5hg==","shasum":"91b8bc5485d60d10e668c2a338a63d1c3db33c97","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180531.tgz","fileCount":73,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180531_1527747131753_0.9877779865626117"}},"2.9.1":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.1","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"4ce4f58243fcb933f2845ccad7497bd0e92ced09","_id":"typescript@2.9.1","_npmVersion":"5.6.0","_nodeVersion":"9.4.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-h6pM2f/GDchCFlldnriOhs1QHuwbnmj6/v7499eMHqPeW4V2G0elua2eIc2nu8v2NdHV0Gm+tzX83Hr6nUFjQA==","shasum":"fdb19d2c67a15d11995fd15640e373e09ab09961","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.1.tgz","fileCount":72,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.1_1527783265489_0.6496125572816736"}},"3.0.0-dev.20180601":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180601","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"9d42ab983d12780eb2a2e8e90dc63e532a36b462","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180601","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-GIpPvsYSnVLcplzQp5cGyij/Xz7NdB0kPNWW6beRJUn9x0m3Wea3fl4RyGLdz3K1OyfQJhPdWSdQKZWkmmx0XA==","shasum":"e0d3b9a3c0378335dc69710b8b6218f8ccd43663","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180601.tgz","fileCount":74,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180601_1527833522562_0.862370052465294"}},"3.0.0-dev.20180602":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180602","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"ed728f186b9bb725cc10f89956cfc52280aa053c","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180602","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-lQNa0+qiovpbnodUsTfywrUcFmYQAmMbJ2Q7Z73RXOxO2h2bNN36+Vy34DYibTcqZnpY5fDAcAFs+4h+BX0adg==","shasum":"ca368c199b4e3cbfd25b82ecece3f2b13349c893","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180602.tgz","fileCount":74,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180602_1527919901587_0.16458716178403243"}},"3.0.0-dev.20180605":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180605","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"7a5dec4d7b64743e5acc6d41c44d9907fe91250a","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180605","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-rvIKJcWvrMCWkTrTHvGZL/V2Vfo57MPj8ohYDQcEV3pF0U6fS2DmFePMK19yLheN/FJayr6SvNyJ4DSS5axxmw==","shasum":"8ad9bd2421242c09624fab8a8390eb06cb7baef8","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180605.tgz","fileCount":75,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180605_1528179151905_0.1641030041074656"}},"3.0.0-dev.20180606":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180606","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"8d737ca9593dffb7243acbe1a1eea0464113b54e","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180606","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-1bOyVDw7f36jEWKuIarg7ryDs/QH483qJ6bP0WI8T5U9F0vnFfjnvfSx0fhM1iSoodfWrsaidmKVNyg/U1/5KA==","shasum":"8fa79b16903f8383ad2cf5559c47dc468971fa0e","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180606.tgz","fileCount":75,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180606_1528265519952_0.72555219855305"}},"3.0.0-dev.20180607":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180607","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"8b77b13166df82f32d1edbc121ba42c46006a3a0","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180607","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-ww0dJQOBrksEgU++TzfFSBslO92FQURL7NCzQyB40+5BmNQ8k1hBP47HzzqO1RyRzWcJ2OmRZBZBQDRgMxVGVg==","shasum":"b48c4ad8a0b1da23f1b0863a6a827fa8fc1e9b26","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180607.tgz","fileCount":75,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180607_1528351859756_0.16369564737000197"}},"3.0.0-dev.20180608":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180608","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"17eaf50b73c1355d2fd15bdc3912aa64a73483dd","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180608","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-v6q6Da6a33LzL4a1iXpkEZ5WAwA0TEkrVhh689dUCbUg3l5CLO3xajPMIz3hzgaIMLyX6EpJwDJjLRbsMHzdjg==","shasum":"0143145fd9dc2fc3e0cd166e69faf69f3f2d3354","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180608.tgz","fileCount":75,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180608_1528438358354_0.8853656866059125"}},"3.0.0-dev.20180609":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180609","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"04187bde8de24f1913099ce04cf22dbb8d20e59c","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180609","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-bqO5mSGbxZoiY/9Y1bnnU36dC5CfnrA9I9WKf3QB0qMuJakoofO2DNTDRwsypyhCThlNtF2Ls/OMj3Txglu4Xg==","shasum":"e25f3377eef4bec04207168c9b57d9e94557b4e2","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180609.tgz","fileCount":75,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180609_1528524722734_0.1987921135675328"}},"2.9.2":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.2","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"da1d3cce6fbf109fd322210901d6bf504fdcf42f","_id":"typescript@2.9.2","_npmVersion":"5.6.0","_nodeVersion":"9.4.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-Gr4p6nFNaoufRIY4NMdpQRNmgxVIGMs4Fcu/ujdYk3nAZqk7supzBE9idmvfZIlH/Cuj//dvi+019qEue9lV0w==","shasum":"1cbf61d05d6b96269244eb6a3bce4bd914e0f00c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.2.tgz","fileCount":72,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.2_1528914942120_0.7475624472595328"}},"3.0.0-dev.20180615":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180615","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"f597589e54f1aa1160c7738b6987ea510af65de1","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180615","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-mMCQoQ1WgqjynnZNZ2U/bvqP89LSuhces7fv4IBWsykoTxsr+NU1l6rNK0a6AE39jEqit8ufsZqUD189bNiP0A==","shasum":"649492d11ee6c1b3b3ee6d89e91282d0224efa07","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180615.tgz","fileCount":75,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180615_1529102548139_0.5758591081438871"}},"3.0.0-dev.20180616":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180616","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"3846e7b06eed371ab1d3d8d9919e2e51c62b8bff","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180616","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-g4rjc9/p4iCRgnHTMSqXO4hpPTDCuqYaz1b//UX9QG+HXQv1CwD0SM5OvcDqtLFPK2RG5xUxhwPzhLXt6Wv75A==","shasum":"1d1a3af3adfc85e620ce599ebfa022858bf2047e","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180616.tgz","fileCount":75,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180616_1529129555810_0.4972173639209545"}},"3.0.0-dev.20180619":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180619","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"4fafe0b50226e27a517817e2631e22871e232c37","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180619","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-kSxEtsbDkVRQ1nFQKteiAQnwO+KS65dcdqmH3NsdVZ5LwPb0l5cbnicZHKlPpqX2LsQxQ9qnqYXSQDI66VGQGw==","shasum":"d0a9d25dd47763ca9611d7d41de3fedea62efb04","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180619.tgz","fileCount":75,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180619_1529388733937_0.9861995065120195"}},"3.0.0-dev.20180620":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180620","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"f3e2e891da9a50cafd1f10b64872c7d919c223ee","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180620","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-SVD+Xo3eN5vlOJltvcrMG8Oy08lKbgSlTUaCdJ2cdb4Tp0Pq++yL0CIxBw3j/Mmul/O4qle8YmDcgkGR48AzMQ==","shasum":"a485c7a9257823b0f1ce62e843f41f61642bcf8e","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180620.tgz","fileCount":76,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180620_1529534070273_0.72408591566015"}},"3.0.0-dev.20180621":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180621","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"0f55566cf48bdc5f817f0b888c6b485e42eff870","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180621","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-uexojVffHYeV7Mb2CFbbUxjN0f7Jz9biKIXGXU4H2sLnG9YChZCt9pCXkTt25TzdStwEn9jk3YAdIE7ixNllDg==","shasum":"a910b3cff52a3352a1a3fdbf748e160704eb6b82","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180621.tgz","fileCount":76,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180621_1529561556068_0.2564190758001281"}},"3.0.0-dev.20180622":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180622","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"cfe65d183ddfccce0748c5aed7088c2b0600840c","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180622","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-S1eswgx+659zyhcBeQbe6S2yPmf73/Fp0xV72AsK7pGH9q/VRXPpVqATL3tQRWws7xxUrL4K2UrmpSvVwVePRw==","shasum":"16cb2d9cd90cda892810439f75b0b92762b8e745","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180622.tgz","fileCount":79,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180622_1529648078011_0.6021180143867768"}},"3.0.0-dev.20180623":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180623","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"22d33d229259cab9f589fcfff19060ba1cdac936","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180623","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-By1zWKpF8QgS78C+R1M4Lr070thxU6baA19UNPtuNILfkIhv3AVkCYMSxChJWmbvXEhsHOV7LVOHa1dlerf05A==","shasum":"2121f0c77a8737bdd9f028eb84ac328c35274fbb","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180623.tgz","fileCount":79,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180623_1529734339006_0.9698477502109792"}},"3.0.0-dev.20180626":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180626","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"70975cd08f48497f3ae6538ff69bf50cac23706b","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180626","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-OQH9osIC4CdsVzVvsb2RenRTVPRKwSIMIpRy2J42XNOEUP+vhX56BX1Z47K3l//LEGY0xG7zF7qVKCDlUhhrlg==","shasum":"fb6be91cfc8e8757d551e83af208d0083be61499","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180626.tgz","fileCount":79,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180626_1529993624841_0.20680919477452075"}},"3.0.0-dev.20180628":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180628","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","gitHead":"16f045b7f502d0b4d7ef82d001ebe1c092feed21","_id":"typescript@3.0.0-dev.20180628","_npmVersion":"5.6.0","_nodeVersion":"9.4.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-BVzzZyFSo21+/qnBdFrqvknaxQoOVir6IPVSJ4r+23sgcw7ePSEki7ReKNn99C/iknqpxSbXnezAk3I2BYEaZw==","shasum":"9f70006d4e04daa5bb7a8b9db96e3728683330a6","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180628.tgz","fileCount":76,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180628_1530145119821_0.3673472166349685"}},"3.0.0-dev.20180629":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180629","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"f23c180a3888548a9dd75c8a4d8cb2d0945b0ea0","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180629","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-3VwPgl4zfs4cIFxOOWGFWo2CVItayz3hhET2P8feKvp/sYpoSmkkziOpLqkUaBjWhB73WbXDa0DN/VtLa6pQ+A==","shasum":"91e7bcfa89aa1ba8a10417fcda618a50c921f154","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180629.tgz","fileCount":79,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180629_1530252729152_0.4233332604222677"}},"3.0.0-dev.20180630":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180630","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"a1746d4cfe357ce8f38619e46578f817dfc03f9c","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180630","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-Cuc8Pf6c8a1YMbwzv+0UuUPapAxgKeHy2yyFvPQlBnRITAXI88/V+5qkPuNLzKGTJTbmGtu8VP+iEKq3tSbxOw==","shasum":"467d6c31b3e2b1d9a63401b56283700a4771097d","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180630.tgz","fileCount":80,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180630_1530339239752_0.05967138216912349"}},"3.0.0-dev.20180703":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180703","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"efc1b7df082e8c2b074c84468fc5b8a30d82d738","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180703","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-JkaEKt6pwu90wwhpULzt8z/ojXakGAVwbWSVZjrcPmLaQ6ytDZrWoBofvQpFPDQSwptE6LRf+lJNfT9JZ0rFJg==","shasum":"9e7c2bd60ef764721223abf8237026b921733a35","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180703.tgz","fileCount":80,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180703_1530598430652_0.4852877721415103"}},"3.0.0-dev.20180704":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180704","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"84f5aa540e650f2e291eeb3600deabec6882f507","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180704","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-5/P4rA2BNnuFn0o9o+WBsvrbZ+3BXV9HNUjETW4BlkxuYn1azIgqQ7NJwyOpns1DLu8xkAfJarc9rT4ECgWb2w==","shasum":"929405d2ff0318550bb346cc818cc0d2eb215577","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180704.tgz","fileCount":80,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180704_1530684884802_0.37592764856359384"}},"3.0.0-dev.20180705":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180705","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"1579bfdd467832505122bfc94508c5a6ae43bb22","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180705","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-B6wOJcHWth4NL6EuP+Gefzd11BeLGSNh/sjHIPPYsBqtRvgJDzufIFr6QLzO2IDVZ4D7qLwg6YzvHGDHPg5tgQ==","shasum":"6b75721aeb4edd5906002d319088e1727d0fe929","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180705.tgz","fileCount":80,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180705_1530771348464_0.6215778525465914"}},"3.0.0-dev.20180706":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180706","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"7a082d45f8546cf737f946823ba2e235e420f8a9","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180706","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-FDGcMfvqDr4xoYhyspX/0SshPQCHFYbegQtggwxJLAWHtMjmutN+DrdNqEGwpX5nGKP96Ek34SN7HDRJegqZzw==","shasum":"7db1e22669389a6f16a644b9ffc1c6d65ed5bb80","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180706.tgz","fileCount":80,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180706_1530857547590_0.7742931745242041"}},"3.0.0-insiders.20180706":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-insiders.20180706","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"7e1711dfb6759b6773abe2bcf6e956aac5399523","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-insiders.20180706","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-W71YcK12VB5Bg2dMaJNygG9lOMNZxAk1JFcU0FXfMO+3CxmQxR8Ck8do9+epB2P6sBgbcRU7GAj4RxRIy7R+Qw==","shasum":"684c6c8ca1eefb11e79b6c072a92046ffd75184e","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-insiders.20180706.tgz","fileCount":80,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-insiders.20180706_1530913429824_0.6074312552736998"}},"3.0.0-dev.20180707":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180707","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"10b174abc16228a921b339f0d5a413e3b8e46b30","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180707","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-AP1tZuUy4CW716f/m2F8LK6U25x/FV1+96hTnruCHiuFFIUx8XbFH8h/0azebb7xNvxGollTraW8VQxD29VFCA==","shasum":"1520047c865f8e7d12ae755ba67f78e0d5f8aa43","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180707.tgz","fileCount":80,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180707_1530943933767_0.04708104983104722"}},"3.0.0-dev.20180710":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180710","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"b3b6c3bdbcf6496931d5a5c272ea80bf33fc86eb","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180710","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-fessARCIEs76sEgyq0Cs9fKVdcbX0H+k7dsjm7yiXr7WXBuGyv9z86Bfc4qagvADhL9TYLOdN/OFvRy4816/qg==","shasum":"19a5ad2191ddc1f4d5cb29c2f20d37bb98613848","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180710.tgz","fileCount":80,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180710_1531203154121_0.4307940253412381"}},"3.0.0-dev.20180711":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180711","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"8a559e4630fccc7ff3f7c716e37b1c5cbb9acb17","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180711","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-0yDMWKFPzDGfnGw2aUyyFmaHdMWuQivShEeCNzncZYFV81pMnBmfct/nY9TcSYBo4fsNm9QQKAo7n+4Qsd1tsw==","shasum":"aa3d44fd3e3514779d0dd92f47be297ba1f327df","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180711.tgz","fileCount":80,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180711_1531289584699_0.3756331775588988"}},"3.0.0-dev.20180712":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180712","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"66e9aaac18de0a608f1f375cf30e449cfd4a503b","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180712","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-/GUbjTjrETF82RpLdOE99DyPMEH3DrlaElXCwzB7515FNgvho6sMYUDlvEM/q0U5+gESDHpNuc+cm9JiCW7n0w==","shasum":"ffdadf6a5a108c44d5325e83e2afbd088f2a5f84","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180712.tgz","fileCount":80,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180712_1531376004258_0.6700264086169205"}},"3.0.0-rc":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-rc","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"b71355d5b5c85de7431869a9b327cce86a62947e","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-rc","_npmVersion":"6.1.0","_nodeVersion":"10.4.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-//6ivFupDRi+rtsivXnYNfXK7URxdvO18hhxgNpbiIVBE611+1NCiiEfgjjx53TU7fjxlhWPuv3RRj5hJF62/w==","shasum":"13553808426d393d3f92c054f4fa6f24589549c1","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-rc.tgz","fileCount":76,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-rc_1531414603121_0.7167222902484227"}},"3.0.1-insiders.20180713":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.1-insiders.20180713","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","gitHead":"07174788a9f162421220e8efd7b6179f4978d5da","_id":"typescript@3.0.1-insiders.20180713","_npmVersion":"6.1.0","_nodeVersion":"10.4.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-EKCHxip2fvCSOUkwo/JqK48kM7LZZz8Ip77gdvAPAChqydGL7Oo0w+/NiReycf6T5EzvI4m6mAtiWrYSgVQyZg==","shasum":"02775b5197ab02b79ed5b84e7483c18ed164e55e","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.1-insiders.20180713.tgz","fileCount":76,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.1-insiders.20180713_1531500764976_0.2020600021139598"}},"3.1.0-dev.20180717":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.1.0-dev.20180717","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","gitHead":"204ce175ddeff414455b34e9718532edfba8358b","_id":"typescript@3.1.0-dev.20180717","_npmVersion":"6.1.0","_nodeVersion":"10.5.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-ALnZUGSBVvIsKmiEl0fx1DeZruoXNTa1tkyEKsc+FYJFKQdxf9IMGuZHtSvDX5fWpxx/MoWg3rGItjyNxDqJ8w==","shasum":"a623e4df35ee102641020b1fe9dd5258547be74a","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.1.0-dev.20180717.tgz","fileCount":82,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.1.0-dev.20180717_1531840930432_0.07752961699297378"}},"3.1.0-dev.20180721":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.1.0-dev.20180721","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"93722c89426425972d08aa2220311ed411a4d9eb","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.1.0-dev.20180721","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-q0nLSs1tOBM4gfTWyiwot73kDs502xZ5HYwYoZLmkjRTXIA+pWr3Z2csfOp8s3lG90kvSt/gxxhriEJgIscnHQ==","shasum":"690467dccdf00c2910611ce3eb8efcffd5f43dbd","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.1.0-dev.20180721.tgz","fileCount":80,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.1.0-dev.20180721_1532153609047_0.796856442954498"}},"3.0.1-insiders.20180723":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.1-insiders.20180723","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"8817d9e5bc4c0fee3d4215e8c7887083b429e5d1","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.1-insiders.20180723","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-eYsBBCHtpfokYFJm5pViWU/j/o0w6gnG6b9Sk+s8KIBVIInlXydPmjNfFwQtQ0xeGwGkRMWbQHBAgrJDO4qyKw==","shasum":"266fbafb349a6429777ab3525cda3bb0a2adc661","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.1-insiders.20180723.tgz","fileCount":80,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.1-insiders.20180723_1532390230143_0.7839168487521915"}},"3.1.0-dev.20180724":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.1.0-dev.20180724","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"30c41492d93c2fff0752f0f256464db2d89d652c","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.1.0-dev.20180724","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-yqRakCWNbgmkw5MGUWgmuPD5CNlCNVE4BkT4bjQsUEdXYmwcYSR27NhVMXBqJVIS7UPSzABZ/Yda+umMQ3B8MA==","shasum":"fd55116ea638b85b93058954d011cfe22a8bfbe3","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.1.0-dev.20180724.tgz","fileCount":80,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.1.0-dev.20180724_1532412795599_0.7689687116907007"}},"3.1.0-dev.20180725":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.1.0-dev.20180725","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"e4d4b0ae4bdc1c9ee38f243fe7d287eb355bebbb","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.1.0-dev.20180725","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-X7gCA2Jnvn5o2LnjGwZXubnL2JUx9IEhAR4bH7ut5YjQIvYLsmcy6Z4VTbKdpuM97FxZp+qphoWxY174P2r2EQ==","shasum":"3165d22ba9ebcfbeddd1cdbe0fe83bd5c1c030f8","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.1.0-dev.20180725.tgz","fileCount":78,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.1.0-dev.20180725_1532499189629_0.44151734952393173"}},"3.1.0-dev.20180726":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.1.0-dev.20180726","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"2b14bcbb56e8dc2cb4d859a485ef0b362331cdba","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.1.0-dev.20180726","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-Ty04VdHbH8HIDJJDeiPRZEbiGUsdblxzKLOf5YOquuXkaDwf9sKomhWXmIwaxz47AwbGv1fkLBGHTRmxZZ+lag==","shasum":"e163396a209de57b2d86f8ce3680602e8e5c59e4","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.1.0-dev.20180726.tgz","fileCount":78,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.1.0-dev.20180726_1532585569146_0.948161028025378"}},"3.0.1-insiders.20180726":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.1-insiders.20180726","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"dedf5d413b9bcfe69564e59dd3e1f96ee9280c63","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.1-insiders.20180726","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-fSY7XOiD1xObVp+vCamB9Hivvvu/SlUu/tzoPz+7xZGk2pqVTRFG7+1a2okxIBVV+C1ePXOR163PIjB3+L4SPA==","shasum":"3f921f23c8768b6fb665ee8a6895b5fca14b0c5f","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.1-insiders.20180726.tgz","fileCount":78,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.1-insiders.20180726_1532629251215_0.24044530135241393"}},"3.1.0-dev.20180727":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.1.0-dev.20180727","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"3bfe91cdd87df86dc96fc45c008bf4458d3563b8","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.1.0-dev.20180727","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-5i3dg8ysZ6XSF95T2ZCgAHm0EXpl2d/0Cw/yhFMVaBYvUjDWqlwpWHIZe4pjxNLvhHxq6Wzj+kKb+zY9fXYRSw==","shasum":"dec7ac54fb393b55c3c5b8f53499bb11183cfb0e","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.1.0-dev.20180727.tgz","fileCount":78,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.1.0-dev.20180727_1532671942757_0.16802560918605547"}},"3.1.0-dev.20180728":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.1.0-dev.20180728","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"5e1872f0c0640ec48bb7855f200dbf8e9fea3fb0","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.1.0-dev.20180728","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-BXxwXB5+xa47C70I+P1o+yVriR3kz0MFr6q9UsxnndnuKZh5HrNKr+JcW3BzgK+pHZMS7CcnuCIcEGfL0hPW0g==","shasum":"013a376f1bd17243de42bb5bd16e7a98e0e25feb","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.1.0-dev.20180728.tgz","fileCount":78,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.1.0-dev.20180728_1532758334640_0.9859488457499721"}},"3.0.1":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.1","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"dedf5d413b9bcfe69564e59dd3e1f96ee9280c63","_id":"typescript@3.0.1","_npmVersion":"6.1.0","_nodeVersion":"10.4.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-zQIMOmC+372pC/CCVLqnQ0zSBiY7HHodU7mpQdjiZddek4GMj31I3dUJ7gAs9o65X7mnRma6OokOkc6f9jjfBg==","shasum":"43738f29585d3a87575520a4b93ab6026ef11fdb","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.1.tgz","fileCount":75,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.1_1532967672359_0.4248735105370005"}},"3.1.0-dev.20180731":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.1.0-dev.20180731","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"e2a8f996d03e984cf9ed9473dede8dd13de49ff1","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.1.0-dev.20180731","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-mqKq/RGYXlj/619ihl8ay/60HQMd9DkraBHcPz+LP0Nu6TuHjvpA6aAs+AURuEnyyf7evB/6yEEWtCSKvKBO0g==","shasum":"c613a2c85cd3fadd50e2bc5e9179fa496d79a4a3","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.1.0-dev.20180731.tgz","fileCount":78,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.1.0-dev.20180731_1533017570235_0.8622199884640531"}},"3.1.0-dev.20180801":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.1.0-dev.20180801","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"9c9f3e3cf9991502c546640a78365ab8e1ea6b52","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.1.0-dev.20180801","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-IhvPNhjjGf7evWeq4wMMrpvq3prp3zN0kYRdwAap6avah1n5LO8iDk6KAzxO6g1jl0M15MdmOyBKkJzRlECSug==","shasum":"e6fa5c284afb10445f0c4ca0a1c0c16329fea351","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.1.0-dev.20180801.tgz","fileCount":78,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.1.0-dev.20180801_1533104014976_0.7065104749700466"}},"3.1.0-dev.20180802":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.1.0-dev.20180802","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"3ab7a98ecf048da3c3caaf23462ef77d3be71424","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.1.0-dev.20180802","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-eWmwrkRZO46kZQIGtxuoU2Mg8WldQ49aXeTv+HLqghlHTBjCe1h8wu9hunGPeTwgcWs0ouLY4Ny9jN3RImflmg==","shasum":"c4f61dca4d410330a374675af777eff9b93bddaf","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.1.0-dev.20180802.tgz","fileCount":78,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.1.0-dev.20180802_1533190409928_0.6953193730945657"}},"3.1.0-dev.20180803":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.1.0-dev.20180803","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"9df88316a2f26a83dd5635e149038f0c10168e63","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.1.0-dev.20180803","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-AOdQHrAA9yLrn3AFVaTIT/JW6eIraQn0DkwcI6QRnto3oViVzd8nypDEacb7rHJ2GIds4aVe+LbsS8gRqvmRMQ==","shasum":"bef1cf4124e9600e8e8a024d201fd9d7bcb83ff9","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.1.0-dev.20180803.tgz","fileCount":78,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.1.0-dev.20180803_1533276792210_0.26530785582332417"}},"3.1.0-dev.20180804":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.1.0-dev.20180804","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"3ef067f7d9a042336903b33bc6404cf61390fd55","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types to JavaScript that support tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.1.0-dev.20180804","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-4R45oI/Jj/MDGlqFxzZTFgyASsBpEGOOQKsedPZQq9PfsIPFGA2WuSlU6riv5j/t8sDYsZhZjhw3BfP3ZOJD5g==","shasum":"266909032a9cafb008243f417d5a5f81630f6b58","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.1.0-dev.20180804.tgz","fileCount":78,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.1.0-dev.20180804_1533363219183_0.6920978263812794"}},"3.1.0-dev.20180807":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.1.0-dev.20180807","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"937afab4b026c9ed527c8369275c749fc8f2af99","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types to JavaScript that support tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.1.0-dev.20180807","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-sGnPUxU+vm/XOmlJ3g9CRldFKXB9YKk1+sbEq3JVNULpwHGpDZ5lZw9/M63c6sCdW90wvP2HghnsBD26V99ASA==","shasum":"17774f3b12c7d81e323dd8274f389e135eddddbc","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.1.0-dev.20180807.tgz","fileCount":78,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.1.0-dev.20180807_1533622414580_0.37304458255777595"}},"3.1.0-dev.20180808":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.1.0-dev.20180808","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"1a05f13aefd2b59da94cb1b1b5da2a5d1bd04411","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types to JavaScript that support tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.1.0-dev.20180808","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-APEkHAai4/btrmvU5Fd4fwyXQiXcFwFxz9AoZPsZcLxBGJvfkLw7Vz1tg7fCKrutPXldkv31MJnpq8MWQSr8hA==","shasum":"c74081db8c79788df9be4d99277571f9c11d49d1","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.1.0-dev.20180808.tgz","fileCount":78,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.1.0-dev.20180808_1533708805007_0.277762357469612"}},"3.1.0-dev.20180809":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.1.0-dev.20180809","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"a36a53bfdb5592b018ad87c7b4b32b9382787a06","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types to JavaScript that support tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.1.0-dev.20180809","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-reuzRgpPMU5zUMpC0d7kEp4OPg9ZR8nwMiSbkSbYyt01eKlH1Q5WTS1azCw4+ASxXhILYM1fbcvTI7uohWspxw==","shasum":"3384f7d4fbdee02a305408cee28e93bd75b49a0a","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.1.0-dev.20180809.tgz","fileCount":78,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.1.0-dev.20180809_1533795208399_0.14558993254008046"}},"3.1.0-dev.20180810":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.1.0-dev.20180810","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"a73161e9d5a6c914d6c49cf6a7b76550a307f13d","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types to JavaScript that support tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.1.0-dev.20180810","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-VFy+GNeSR0UGU2foHHSCt6cLZmkc4VPGIjQJlcRXhUp/HlyKNg5IWMsZ1uLQG/uGdw+VaHUcU12w88GFj5iRVQ==","shasum":"4e3c194fd3c1e87dd7c91f9ad63494fa835952c7","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.1.0-dev.20180810.tgz","fileCount":78,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.1.0-dev.20180810_1533881594156_0.8805682847869529"}},"3.1.0-dev.20180813":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.1.0-dev.20180813","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"ad63468ed57cd9761418bcd1c7740d1dd1eb5269","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types to JavaScript that support tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.1.0-dev.20180813","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-3sooaeRS1KvHoZ/hE8v2VhlxojcPvHBVZ5jXi070GscZA9BeZ/sXA21Un5m9xqeXMESrWFt7onto2xZfwj2XQg==","shasum":"c522ff37f1ba845eb9197e8a3f6ffe78da7a8913","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.1.0-dev.20180813.tgz","fileCount":78,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.1.0-dev.20180813_1534187113991_0.27632787321381547"}}},"readme":"","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"time":{"modified":"2018-08-13T19:05:17.576Z","created":"2012-10-01T15:35:39.553Z","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"},"author":{"name":"Microsoft Corp."},"repository":{"type":"git","url":"git+https://github.com/Microsoft/TypeScript.git"},"users":{"pvorb":true,"mpinteractiv":true,"urish":true,"theblacksmith":true,"vvakame":true,"silas":true,"carlosb":true,"edalorzo":true,"sinclair":true,"isao":true,"atheken":true,"ktaeyln":true,"nexustools":true,"joshuacc":true,"incar":true,"moonpyk":true,"reekdeb":true,"agantelin":true,"mhfrantz":true,"gimystic":true,"adrian.arroyocalle":true,"smorchon":true,"nickeljew":true,"zolern":true,"lupideo":true,"tkhemani":true,"lexicality":true,"icirellik":true,"johnpapa":true,"aitorllj93":true,"oburejin":true,"ben-barbier":true,"ubi":true,"jpetitte":true,"brentlintner":true,"mrmochi":true,"nycdotnet":true,"jimkropa":true,"kontrax":true,"codeprowong":true,"kron4eg":true,"tcskrovseth":true,"jimlloyd":true,"xeoneux":true,"rwhogg":true,"wkaifang":true,"scaffrey":true,"ovrmrw":true,"lcdss":true,"fadihania":true,"artemigos":true,"jonwilkinson":true,"hust007":true,"amartelr":true,"mccataldo":true,"evan2x":true,"a3.ivanenko":true,"sternelee":true,"bsnote":true,"redstrike":true,"enriched":true,"timdp":true,"tobiasnickel":true,"wombatworks":true,"evanyeung":true,"vasz":true,"cs.x":true,"davidjsalazarmoreno":true,"garenyondem":true,"illuminator":true,"djamseed":true,"enet4":true,"dimonfox":true,"kalahari":true,"kyle_needham":true,"nickeltobias":true,"lex_nel":true,"marais":true,"roman-io":true,"hypo9eal":true,"daam":true,"leongaban":true,"sakura":true,"th3brink":true,"arttse":true,"julienrbrt":true,"itomek":true,"maurojunior":true,"kayahr":true,"piecioshka":true,"drewigg":true,"webstyle":true,"alimd":true,"andywalkers":true,"manjunathd":true,"abdihaikal":true,"walkercz":true,"zafix":true,"mysticatea":true,"jerrywu":true,"matiasmarani":true,"cangulo":true,"danielsimonjr":true,"filipve":true,"jansor":true,"justin.doherty":true,"cfleschhut":true,"edm00se":true,"faraoman":true,"seshanda":true,"nbering":true,"floriannagel":true,"guanfeng":true,"rebolon":true,"natarajanmca11":true,"juk":true,"caeyna":true,"leonardorb":true,"tmurngon":true,"shakakira":true,"largepuma":true,"tsyue":true,"knoja4":true,"areasis":true,"azertypow":true,"ahvonenj":true,"igorsetsfire":true,"morganz":true,"kbezold":true,"plantain_00":true,"ishida":true,"mattw":true,"jamiechoi":true,"pmoleri_ig":true,"easimonenko":true,"thinhair":true,"serhiiso":true,"reduardo7":true,"nohomey":true,"avernon2":true,"codekraft-studio":true,"elbertbiggs360":true,"trusktr":true,"sergeyshandar":true,"ptrevethan":true,"drdanryan":true,"jota":true,"fistynuts":true,"krocon":true,"ognjen.jevremovic":true,"robinbuschmann":true,"thewhiterabbit":true,"escapeimagery":true,"mseminatore":true,"chinawolf_wyp":true,"j717273419":true,"rocket0191":true,"ovgu12":true,"markis":true,"morogasper":true,"playthefallen":true,"chenwei791129":true,"craigiswayne":true,"batz":true,"fredcorn":true,"kingfeast":true,"arcanedev":true,"alessandro.perrone":true,"maxwelldu":true,"k-ta-yamada":true,"kiaratto":true,"evanshortiss":true,"ricardogobbosouza":true,"rbcorrea":true,"tewarid":true,"rahsaanbasek":true,"y2zz":true,"mattyboy":true,"deyshin":true,"alexxnica":true,"metaa":true,"shentengtu":true,"heartnett":true,"dnarvaez":true,"buru1020":true,"serge-nikitin":true,"panlw":true,"jamesbedont":true,"albertico88":true,"slavqa":true,"manojkhannakm":true,"hwhmusic":true,"kefniark":true,"rdca84":true,"sg6":true,"yukoff":true,"bittercoffee":true,"majkel":true,"d-band":true,"russleyshaw":true,"yangwao":true,"zoser":true,"krostyslav":true,"paulkolesnyk":true,"ackerapple":true,"allen_l_liu":true,"azz":true,"remmeier":true,"nemolo":true,"mdang8":true,"shadster":true,"nicky-lenaers":true,"t0ngt0n9":true,"adeelquadri":true,"orenschwartz":true,"luffy84217":true,"willwm":true,"dbobrov":true,"pgabronis":true,"ksugiura":true,"yangzw":true,"naokie":true,"tztz":true,"mgthomas99":true,"stephanlv":true,"sagarjadhav":true,"qiuqiu666":true,"logol":true,"lmcarreiro":true,"dh19911021":true,"phil1929":true,"stormcrows":true,"omaraljabli":true,"yeming":true,"ik_make":true,"mdecker":true,"abetomo":true,"sshrike":true,"zamis":true,"renishskills":true,"severen":true,"tido":true,"miroklarin":true,"mdedirudianto":true,"akinhwan":true,"pepperpot":true,"centiball":true,"cab1729":true,"fuji44":true,"willwolffmyren":true,"arsafab":true,"takonyc":true,"askyous":true,"fvcproductions":true,"digitalclover":true,"hjbowers":true,"cameronnokes":true},"homepage":"http://typescriptlang.org/","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"readmeFilename":"","license":"Apache-2.0","_attachments":{}}
\ No newline at end of file
+{"_id":"typescript","_rev":"1417-71b6d5230089bcafa087860818dc1287","name":"typescript","description":"TypeScript is a language for application scale JavaScript development","dist-tags":{"latest":"3.0.1","next":"3.1.0-dev.20180813","beta":"2.0.0","rc":"3.0.0-rc","insiders":"3.0.1-insiders.20180726"},"versions":{"0.8.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"0.8.0","description":"TypeScript is a language for application scale JavaScript development","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"bugs":{"url":"http://typescript.codeplex.com/workitem/list/basic"},"repository":{"type":"git","url":"https://git01.codeplex.com/TypeScript"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc"},"_id":"typescript@0.8.0","dist":{"shasum":"e1725d0ebd476eed6c38fda07fdf6942e0f22a0a","tarball":"https://registry.npmjs.org/typescript/-/typescript-0.8.0.tgz"},"_npmVersion":"1.1.61","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{}},"0.8.1":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"0.8.1","licenses":[{"type":"Apache License 2.0","url":"http://typescript.codeplex.com/license"}],"description":"TypeScript is a language for application scale JavaScript development","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"bugs":{"url":"http://typescript.codeplex.com/workitem/list/basic"},"repository":{"type":"git","url":"https://git01.codeplex.com/typescript"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc"},"engines":{"node":">=0.8.0"},"_id":"typescript@0.8.1","dist":{"shasum":"9499f7fe4f4e56010a8c14a5ca000eeb9b5dd4eb","tarball":"https://registry.npmjs.org/typescript/-/typescript-0.8.1.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{}},"0.8.1-1":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"0.8.1-1","licenses":[{"type":"Apache License 2.0","url":"http://typescript.codeplex.com/license"}],"description":"TypeScript is a language for application scale JavaScript development","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"bugs":{"url":"http://typescript.codeplex.com/workitem/list/basic"},"repository":{"type":"git","url":"https://git01.codeplex.com/typescript"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc"},"engines":{"node":">=0.8.0"},"_id":"typescript@0.8.1-1","dist":{"shasum":"34d5563992404abb5eb9fac6a120961639935d77","tarball":"https://registry.npmjs.org/typescript/-/typescript-0.8.1-1.tgz"},"_npmVersion":"1.1.65","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{}},"0.8.2":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"0.8.2","licenses":[{"type":"Apache License 2.0","url":"http://typescript.codeplex.com/license"}],"description":"TypeScript is a language for application scale JavaScript development","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"bugs":{"url":"http://typescript.codeplex.com/workitem/list/basic"},"repository":{"type":"git","url":"https://git01.codeplex.com/typescript"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest"},"_id":"typescript@0.8.2","dist":{"shasum":"8894a39e4f27547973162bda165f88d57e7c9d5e","tarball":"https://registry.npmjs.org/typescript/-/typescript-0.8.2.tgz"},"_npmVersion":"1.1.65","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{}},"0.8.3":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"0.8.3","licenses":[{"type":"Apache License 2.0","url":"http://typescript.codeplex.com/license"}],"description":"TypeScript is a language for application scale JavaScript development","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"bugs":{"url":"http://typescript.codeplex.com/workitem/list/basic"},"repository":{"type":"git","url":"https://git01.codeplex.com/typescript"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest"},"_id":"typescript@0.8.3","dist":{"shasum":"a16a4d5ad97bb35b06de3b9c9fb6b03b68fb00e4","tarball":"https://registry.npmjs.org/typescript/-/typescript-0.8.3.tgz"},"_npmVersion":"1.1.63","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{}},"0.9.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"0.9.0","licenses":[{"type":"Apache License 2.0","url":"http://typescript.codeplex.com/license"}],"description":"TypeScript is a language for application scale JavaScript development","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"bugs":{"url":"http://typescript.codeplex.com/workitem/list/basic"},"repository":{"type":"git","url":"https://git01.codeplex.com/typescript"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest"},"_id":"typescript@0.9.0","dist":{"shasum":"a01a5e6fdd643c7639fe3145907e0d5365665eab","tarball":"https://registry.npmjs.org/typescript/-/typescript-0.9.0.tgz"},"_from":".","_npmVersion":"1.2.30","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{}},"0.9.0-1":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"0.9.0-1","licenses":[{"type":"Apache License 2.0","url":"http://typescript.codeplex.com/license"}],"description":"TypeScript is a language for application scale JavaScript development","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"bugs":{"url":"http://typescript.codeplex.com/workitem/list/basic"},"repository":{"type":"git","url":"https://git01.codeplex.com/typescript"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest"},"_id":"typescript@0.9.0-1","dist":{"shasum":"921e05ddaf9464cae6e5283326d3179c97ee5d22","tarball":"https://registry.npmjs.org/typescript/-/typescript-0.9.0-1.tgz"},"_from":".","_npmVersion":"1.2.30","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{}},"0.9.1":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"0.9.1","licenses":[{"type":"Apache License 2.0","url":"http://typescript.codeplex.com/license"}],"description":"TypeScript is a language for application scale JavaScript development","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"bugs":{"url":"http://typescript.codeplex.com/workitem/list/basic"},"repository":{"type":"git","url":"https://git01.codeplex.com/typescript"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest"},"_id":"typescript@0.9.1","dist":{"shasum":"8615501483c8034358059ddbe3dff31a7e1c791e","tarball":"https://registry.npmjs.org/typescript/-/typescript-0.9.1.tgz"},"_npmVersion":"1.1.65","_npmUser":{"name":"typescript","email":"jont@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{}},"0.9.1-1":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"0.9.1-1","licenses":[{"type":"Apache License 2.0","url":"http://typescript.codeplex.com/license"}],"description":"TypeScript is a language for application scale JavaScript development","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"bugs":{"url":"http://typescript.codeplex.com/workitem/list/basic"},"repository":{"type":"git","url":"https://git01.codeplex.com/typescript"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest"},"_id":"typescript@0.9.1-1","dist":{"shasum":"ee56e64777f6d2c25e369b37f3842991f8f74746","tarball":"https://registry.npmjs.org/typescript/-/typescript-0.9.1-1.tgz"},"_from":".","_npmVersion":"1.3.8","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{}},"0.9.5":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"0.9.5","licenses":[{"type":"Apache License 2.0","url":"http://typescript.codeplex.com/license"}],"description":"TypeScript is a language for application scale JavaScript development","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"bugs":{"url":"http://typescript.codeplex.com/workitem/list/basic"},"repository":{"type":"git","url":"https://git01.codeplex.com/typescript"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest"},"_id":"typescript@0.9.5","dist":{"shasum":"85ad88dfa75718320c6a0c0fa555e39ce8b88252","tarball":"https://registry.npmjs.org/typescript/-/typescript-0.9.5.tgz"},"_from":".","_npmVersion":"1.3.11","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{}},"0.9.7":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"0.9.7","licenses":[{"type":"Apache License 2.0","url":"http://typescript.codeplex.com/license"}],"description":"TypeScript is a language for application scale JavaScript development","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"bugs":{"url":"http://typescript.codeplex.com/workitem/list/basic"},"repository":{"type":"git","url":"https://git01.codeplex.com/typescript"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest"},"_id":"typescript@0.9.7","dist":{"shasum":"6a31e1ddd7ccd44c63c416bab5f21d58dbb3cad4","tarball":"https://registry.npmjs.org/typescript/-/typescript-0.9.7.tgz"},"_from":".","_npmVersion":"1.2.18","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{}},"1.0.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.0.0","licenses":[{"type":"Apache License 2.0","url":"http://typescript.codeplex.com/license"}],"description":"TypeScript is a language for application scale JavaScript development","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"bugs":{"url":"http://typescript.codeplex.com/workitem/list/basic"},"repository":{"type":"git","url":"https://git01.codeplex.com/typescript"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest"},"_id":"typescript@1.0.0","dist":{"shasum":"5720a3d684560d19b7f58034c67e8384fe2f83ad","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.0.0.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{}},"1.0.1":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.0.1","licenses":[{"type":"Apache License 2.0","url":"http://typescript.codeplex.com/license"}],"description":"TypeScript is a language for application scale JavaScript development","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"bugs":{"url":"http://typescript.codeplex.com/workitem/list/basic"},"repository":{"type":"git","url":"https://git01.codeplex.com/typescript"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest"},"_id":"typescript@1.0.1","dist":{"shasum":"e8eacde3084a091d3fe29b60ac5862252662a25a","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.0.1.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{}},"1.1.0-1":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.1.0-1","licenses":[{"type":"Apache License 2.0","url":"https://github.com/Microsoft/TypeScript/blob/master/LICENSE.txt"}],"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":"https://github.com/Microsoft/TypeScript.git"},"preferGlobal":true,"main":"./bin/tsc.js","bin":{"tsc":"./bin/tsc"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","codeclimate-test-reporter":"latest"},"scripts":{"test":"jake generate-code-coverage"},"gitHead":"4d63fde84a48561f3d886a1e46b7eadb92fbfbbc","_id":"typescript@1.1.0-1","_shasum":"ad83fb48dd52312564fc795fb2e1ecc43d5e9d6e","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ad83fb48dd52312564fc795fb2e1ecc43d5e9d6e","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.1.0-1.tgz"},"directories":{}},"1.3.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.3.0","licenses":[{"type":"Apache License 2.0","url":"https://github.com/Microsoft/TypeScript/blob/master/LICENSE.txt"}],"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":"https://github.com/Microsoft/TypeScript.git"},"preferGlobal":true,"main":"./bin/tsc.js","bin":{"tsc":"./bin/tsc"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","codeclimate-test-reporter":"latest"},"scripts":{"test":"jake generate-code-coverage"},"gitHead":"39daf6cfbeb627b5aca5106977760e4272c67b8f","_id":"typescript@1.3.0","_shasum":"b48262ac7444971b447ffc6bb56c69854eef02e1","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"b48262ac7444971b447ffc6bb56c69854eef02e1","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.3.0.tgz"},"directories":{}},"1.4.1":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.4.1","licenses":[{"type":"Apache License 2.0","url":"https://github.com/Microsoft/TypeScript/blob/master/LICENSE.txt"}],"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":"https://github.com/Microsoft/TypeScript.git"},"preferGlobal":true,"main":"./bin/typescriptServices.js","bin":{"tsc":"./bin/tsc"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","codeclimate-test-reporter":"latest"},"scripts":{"test":"jake generate-code-coverage"},"gitHead":"3ab3f916c00755a1d9937f7116d1e9a80ddf2ef3","_id":"typescript@1.4.1","_shasum":"eb4da986d1b7f01452eafb57559e0cc8f516cd48","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"eb4da986d1b7f01452eafb57559e0cc8f516cd48","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.4.1.tgz"},"directories":{}},"1.5.0-alpha":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.5.0-alpha","licenses":[{"type":"Apache License 2.0","url":"https://github.com/Microsoft/TypeScript/blob/master/LICENSE.txt"}],"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":"https://github.com/Microsoft/TypeScript.git"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest"},"scripts":{"test":"jake runtests"},"gitHead":"b18dd53242df31163390c411ac7ab5e9c282fea2","_id":"typescript@1.5.0-alpha","_shasum":"3186ae01d409d9dd924eb35c57e90c2013b97497","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"3186ae01d409d9dd924eb35c57e90c2013b97497","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.5.0-alpha.tgz"},"directories":{}},"1.5.0-beta":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.5.0-beta","licenses":[{"type":"Apache License 2.0","url":"https://github.com/Microsoft/TypeScript/blob/master/LICENSE.txt"}],"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":"https://github.com/Microsoft/TypeScript.git"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest"},"scripts":{"test":"jake runtests"},"gitHead":"c233073d02536b33b3848541b538ad762c4729ba","_id":"typescript@1.5.0-beta","_shasum":"702cfc65692538bd5de273ffd49a86d5fc37598f","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"702cfc65692538bd5de273ffd49a86d5fc37598f","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.5.0-beta.tgz"},"directories":{}},"1.5.3":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.5.3","licenses":[{"type":"Apache License 2.0","url":"https://github.com/Microsoft/TypeScript/blob/master/LICENSE.txt"}],"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"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest"},"scripts":{"test":"jake runtests"},"gitHead":"a24aa6f57d281bafd3535f0f4c3f492364a8b4d6","_id":"typescript@1.5.3","_shasum":"ce35e55f75b7a8d0ed571b503bd0a57157e523f7","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"ce35e55f75b7a8d0ed571b503bd0a57157e523f7","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.5.3.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{}},"1.6.0-dev.20150722.1":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150722.1","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":"https://github.com/Microsoft/TypeScript.git"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","tslint":"latest"},"scripts":{"test":"jake runtests"},"gitHead":"50198247bbd8093923aead123617d9c0c1eae4db","_id":"typescript@1.6.0-dev.20150722.1","_shasum":"40b74fbed0edd6d1dcab45a83a39f43bd612505d","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"40b74fbed0edd6d1dcab45a83a39f43bd612505d","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150722.1.tgz"},"directories":{}},"1.6.0-dev.20150723":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150723","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":"https://github.com/Microsoft/TypeScript.git"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"test":"jake runtests"},"gitHead":"3805500e842ceb08d01022dacb183b38b64a4b9a","_id":"typescript@1.6.0-dev.20150723","_shasum":"c200155ff7c85613209f9d8da193bfd1f48f0202","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"c200155ff7c85613209f9d8da193bfd1f48f0202","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150723.tgz"},"directories":{}},"1.6.0-dev.20150724":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150724","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":"https://github.com/Microsoft/TypeScript.git"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"test":"jake runtests"},"gitHead":"e1fa3c551502a55d622f957e41dbeead53e07f6a","_id":"typescript@1.6.0-dev.20150724","_shasum":"d81057ea6f27b942c60f9aac686e041754bb2667","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d81057ea6f27b942c60f9aac686e041754bb2667","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150724.tgz"},"directories":{}},"1.6.0-dev.20150725":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150725","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":"https://github.com/Microsoft/TypeScript.git"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"test":"jake runtests"},"gitHead":"5bb2e2f584985b6b66a5ac337578fd1982f666c5","_id":"typescript@1.6.0-dev.20150725","_shasum":"67819661dc1ebd3b7c79d64646ef81e93857daea","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"67819661dc1ebd3b7c79d64646ef81e93857daea","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150725.tgz"},"directories":{}},"1.6.0-dev.20150726":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150726","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":"https://github.com/Microsoft/TypeScript.git"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"test":"jake runtests"},"gitHead":"5bb2e2f584985b6b66a5ac337578fd1982f666c5","_id":"typescript@1.6.0-dev.20150726","_shasum":"4351781fc41a46c4a6930295a67a41fe34e1fb2e","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4351781fc41a46c4a6930295a67a41fe34e1fb2e","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150726.tgz"},"directories":{}},"1.6.0-dev.20150727":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150727","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":"https://github.com/Microsoft/TypeScript.git"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"test":"jake runtests"},"gitHead":"5bb2e2f584985b6b66a5ac337578fd1982f666c5","_id":"typescript@1.6.0-dev.20150727","_shasum":"b36f0e2217075742e0899117d1be8b35fc584e75","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"b36f0e2217075742e0899117d1be8b35fc584e75","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150727.tgz"},"directories":{}},"1.6.0-dev.20150728":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150728","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":"https://github.com/Microsoft/TypeScript.git"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"test":"jake runtests"},"gitHead":"d0bc070fb8bcd90947f3f2005647c074736ec356","_id":"typescript@1.6.0-dev.20150728","_shasum":"4a3f6953984d1ca547949b4d7eb651a9da12f70e","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4a3f6953984d1ca547949b4d7eb651a9da12f70e","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150728.tgz"},"directories":{}},"1.6.0-dev.20150729":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150729","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":"https://github.com/Microsoft/TypeScript.git"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"test":"jake runtests"},"gitHead":"0a9fb1a7b5c77c070beed83c14478ecd01d2daef","_id":"typescript@1.6.0-dev.20150729","_shasum":"2d19bc8a55c3af022726a2c6460e486cd87f6a48","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"2d19bc8a55c3af022726a2c6460e486cd87f6a48","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150729.tgz"},"directories":{}},"1.6.0-dev.20150730":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150730","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":"https://github.com/Microsoft/TypeScript.git"},"preferGlobal":true,"main":"./bin/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"test":"jake runtests"},"gitHead":"97e7b073f30ac1b399243b5299e6869edb0f36ec","_id":"typescript@1.6.0-dev.20150730","_shasum":"973fe7336b6b8dd7e4a5a2b7fd198311b37f34aa","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"973fe7336b6b8dd7e4a5a2b7fd198311b37f34aa","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150730.tgz"},"directories":{}},"1.6.0-dev.20150731":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150731","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"test":"jake runtests"},"gitHead":"7e9e920d1e1dc664ac170650fc93e21b2c616520","_id":"typescript@1.6.0-dev.20150731","_shasum":"6a74b96a291d483315ef0fcfc0b6566f4289d9b5","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"6a74b96a291d483315ef0fcfc0b6566f4289d9b5","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150731.tgz"},"directories":{}},"1.6.0-dev.20150801":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150801","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"gitHead":"a4a1a51db6968bd13c8be02af4900083b2f0584c","_id":"typescript@1.6.0-dev.20150801","_shasum":"cb233850728db553cddb141036316579699427df","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"cb233850728db553cddb141036316579699427df","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150801.tgz"},"directories":{}},"1.6.0-dev.20150802":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150802","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"gitHead":"a4a1a51db6968bd13c8be02af4900083b2f0584c","_id":"typescript@1.6.0-dev.20150802","_shasum":"8f10759b983b26152e21c4b2ff890d3fa09c4064","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8f10759b983b26152e21c4b2ff890d3fa09c4064","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150802.tgz"},"directories":{}},"1.6.0-dev.20150803":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150803","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"gitHead":"a4a1a51db6968bd13c8be02af4900083b2f0584c","_id":"typescript@1.6.0-dev.20150803","_shasum":"48dd162cf29826abbb32fea06dc5760427f61d07","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"48dd162cf29826abbb32fea06dc5760427f61d07","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150803.tgz"},"directories":{}},"1.6.0-dev.20150804":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150804","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"gitHead":"4c7b214a69c97eb1746b94712ff9a4c2202e2dca","_id":"typescript@1.6.0-dev.20150804","_shasum":"06dc84cb94f1236b2963ffeda137b6b581cca5a7","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"06dc84cb94f1236b2963ffeda137b6b581cca5a7","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150804.tgz"},"directories":{}},"1.6.0-dev.20150805":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150805","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"gitHead":"bb3fb7d98b4ac4cd62474dde15c226b26af30b5f","_id":"typescript@1.6.0-dev.20150805","_shasum":"f8a038719cb699071e9d77f658dbf005923645c4","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f8a038719cb699071e9d77f658dbf005923645c4","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150805.tgz"},"directories":{}},"1.6.0-dev.20150806":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150806","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"gitHead":"2b8ef5e6fd252dafedeb02a17bc2fbe902be1d8a","_id":"typescript@1.6.0-dev.20150806","_shasum":"b98c9b8ac5424b12b0e97face408a7ab2320c192","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"b98c9b8ac5424b12b0e97face408a7ab2320c192","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150806.tgz"},"directories":{}},"1.6.0-dev.20150807":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150807","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"gitHead":"2f9248386e3169d2ed161ed9034d6bb4e61bf688","_id":"typescript@1.6.0-dev.20150807","_shasum":"3bb9bc5a929cc073f18759b1690a72ca15133f0a","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"3bb9bc5a929cc073f18759b1690a72ca15133f0a","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150807.tgz"},"directories":{}},"1.6.0-dev.20150808":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150808","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"gitHead":"92f152cb8e9f132234727da9882763f08e13ec34","_id":"typescript@1.6.0-dev.20150808","_shasum":"4edbba25c7f8a9ac7ba2225eed2b09bb8adebb29","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4edbba25c7f8a9ac7ba2225eed2b09bb8adebb29","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150808.tgz"},"directories":{}},"1.6.0-dev.20150809":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150809","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"gitHead":"92f152cb8e9f132234727da9882763f08e13ec34","_id":"typescript@1.6.0-dev.20150809","_shasum":"3e12d787d11e0060804c125eb6e3584ba4e60c11","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"3e12d787d11e0060804c125eb6e3584ba4e60c11","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150809.tgz"},"directories":{}},"1.6.0-dev.20150810":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150810","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"gitHead":"92f152cb8e9f132234727da9882763f08e13ec34","_id":"typescript@1.6.0-dev.20150810","_shasum":"2c9ae9563832357b6357e42d5ff87d1b71175f12","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"2c9ae9563832357b6357e42d5ff87d1b71175f12","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150810.tgz"},"directories":{}},"1.6.0-dev.20150811":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150811","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"gitHead":"586abacec4e9c2e53aa9eda4f8632d03760148a7","_id":"typescript@1.6.0-dev.20150811","_shasum":"84e7632a069d6434d5619e2734b42317d7ef3b71","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"84e7632a069d6434d5619e2734b42317d7ef3b71","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150811.tgz"},"directories":{}},"1.6.0-dev.20150812":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150812","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"gitHead":"7c8da422302d4e46bdb38547a1e107df534173df","_id":"typescript@1.6.0-dev.20150812","_shasum":"a37cb03e0e10c71b913a104fe64e2e7ae1d7666e","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a37cb03e0e10c71b913a104fe64e2e7ae1d7666e","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150812.tgz"},"directories":{}},"1.6.0-dev.20150813":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150813","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"gitHead":"f92aa8681a3298b1505b1867fad9cd7c674d1604","_id":"typescript@1.6.0-dev.20150813","_shasum":"a82d906a18646db26ac17aa97aa53b5770ced1f0","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a82d906a18646db26ac17aa97aa53b5770ced1f0","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150813.tgz"},"directories":{}},"1.6.0-dev.20150814":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150814","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"gitHead":"e34238cb9232a01abf2f5ab29ea62745535bddf8","_id":"typescript@1.6.0-dev.20150814","_shasum":"8ac6894ee580d0fb92b991c9347f799deb164f64","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8ac6894ee580d0fb92b991c9347f799deb164f64","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150814.tgz"},"directories":{}},"1.6.0-dev.20150815":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150815","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"53239d4a8bff80b7ae802a9a0392edd91d1a1295","_id":"typescript@1.6.0-dev.20150815","_shasum":"8a49600339beda83155a24557d1b27c83930867b","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8a49600339beda83155a24557d1b27c83930867b","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150815.tgz"},"directories":{}},"1.6.0-dev.20150816":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150816","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"53239d4a8bff80b7ae802a9a0392edd91d1a1295","_id":"typescript@1.6.0-dev.20150816","_shasum":"52eb1f17853fa9ae7992be442fbea1f5c2d2a0cd","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"52eb1f17853fa9ae7992be442fbea1f5c2d2a0cd","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150816.tgz"},"directories":{}},"1.6.0-dev.20150817":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150817","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"53239d4a8bff80b7ae802a9a0392edd91d1a1295","_id":"typescript@1.6.0-dev.20150817","_shasum":"7011b8db31f5fe3ec0fe6c3be756e8c13ed4a9cc","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"7011b8db31f5fe3ec0fe6c3be756e8c13ed4a9cc","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150817.tgz"},"directories":{}},"1.6.0-dev.20150818":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150818","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e86f20785925b0b0c0f9a54f392f92ca8124eb14","_id":"typescript@1.6.0-dev.20150818","_shasum":"7a49836433b26eabe596fe20081259e6b025e4a3","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"7a49836433b26eabe596fe20081259e6b025e4a3","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150818.tgz"},"directories":{}},"1.6.0-dev.20150819":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150819","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"06841ebc6bdcdde48fc3ff1ca30238694ba7ef10","_id":"typescript@1.6.0-dev.20150819","_shasum":"dcfd9b5beb0e1f4f56fb3b8891e2ba68d59804b1","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"dcfd9b5beb0e1f4f56fb3b8891e2ba68d59804b1","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150819.tgz"},"directories":{}},"1.6.0-dev.20150820":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150820","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"069d2dc724798d1249c334aa13b02a3c2f1617ea","_id":"typescript@1.6.0-dev.20150820","_shasum":"53b55e73bcd2344e57f5bcb1238c6bcdf721566b","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"53b55e73bcd2344e57f5bcb1238c6bcdf721566b","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150820.tgz"},"directories":{}},"1.6.0-dev.20150821":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150821","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"425ad026aed673a0a6348c6fa2480e0c849fc1aa","_id":"typescript@1.6.0-dev.20150821","_shasum":"b8e18105970dfce6d41a951206889950b6b44b64","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"b8e18105970dfce6d41a951206889950b6b44b64","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150821.tgz"},"directories":{}},"1.6.0-dev.20150822":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150822","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"15fb496be8cb281d2e786c6b93b695073d0e5196","_id":"typescript@1.6.0-dev.20150822","_shasum":"3e91c14dc04f66baf1b3607c140b2f107d84808c","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"3e91c14dc04f66baf1b3607c140b2f107d84808c","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150822.tgz"},"directories":{}},"1.6.0-dev.20150823":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150823","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"15fb496be8cb281d2e786c6b93b695073d0e5196","_id":"typescript@1.6.0-dev.20150823","_shasum":"af8666bc21649a71b2145ae1bad0f4b88a17d590","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"af8666bc21649a71b2145ae1bad0f4b88a17d590","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150823.tgz"},"directories":{}},"1.6.0-dev.20150824":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150824","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"15fb496be8cb281d2e786c6b93b695073d0e5196","_id":"typescript@1.6.0-dev.20150824","_shasum":"8616c1b3017e16e9b385a1c43dada0086ad6cfef","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8616c1b3017e16e9b385a1c43dada0086ad6cfef","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150824.tgz"},"directories":{}},"1.6.0-dev.20150825":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150825","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"9a6db930b48b2e51216739aa0d9430e13121cc93","_id":"typescript@1.6.0-dev.20150825","_shasum":"9ce426d6e023ab7748663df504e90f7716f03394","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"9ce426d6e023ab7748663df504e90f7716f03394","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150825.tgz"},"directories":{}},"1.7.0-dev.20150826":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150826","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ca593ec1abb7ac93d324224c90381b67c67aab9d","_id":"typescript@1.7.0-dev.20150826","_shasum":"52b7d41c97d47ae7a071801c2bd29496c0d33c46","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"52b7d41c97d47ae7a071801c2bd29496c0d33c46","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150826.tgz"},"directories":{}},"1.7.0-dev.20150827":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150827","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c9c6d82376a0dceeee4c55a25147956a1d074dae","_id":"typescript@1.7.0-dev.20150827","_shasum":"639d118ce4300dadb3e097d0abe8b8128e741b2e","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"639d118ce4300dadb3e097d0abe8b8128e741b2e","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150827.tgz"},"directories":{}},"1.7.0-dev.20150828":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150828","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"dec6bd9677fd95c64c0db8699ef05a3bba123ea1","_id":"typescript@1.7.0-dev.20150828","_shasum":"223b8ed67dc079e5caa9b56a9d3eba6c3886c328","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"223b8ed67dc079e5caa9b56a9d3eba6c3886c328","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150828.tgz"},"directories":{}},"1.7.0-dev.20150829":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150829","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"7f6608b2b929c6057e3be505c94ebb56969e43d1","_id":"typescript@1.7.0-dev.20150829","_shasum":"4c864ebafd31a49277ff78fabc1797575c0a66e9","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4c864ebafd31a49277ff78fabc1797575c0a66e9","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150829.tgz"},"directories":{}},"1.7.0-dev.20150830":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150830","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"7f6608b2b929c6057e3be505c94ebb56969e43d1","_id":"typescript@1.7.0-dev.20150830","_shasum":"08ffc0765278758537a9865d84cdbfe43f09acdf","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"08ffc0765278758537a9865d84cdbfe43f09acdf","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150830.tgz"},"directories":{}},"1.7.0-dev.20150831":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150831","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d0281f0e0e289de4467bef639a491f7f14df2186","_id":"typescript@1.7.0-dev.20150831","_shasum":"33f2945811ebe9f5fa9d7c00effa43bf2b498ef8","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"33f2945811ebe9f5fa9d7c00effa43bf2b498ef8","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150831.tgz"},"directories":{}},"1.7.0-dev.20150901":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150901","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"90b345c01e34b1d7dc09c0a5814710df8a1f8a4f","_id":"typescript@1.7.0-dev.20150901","_shasum":"9568599abac843eb0b9307d897c60c03e9f4ebbb","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"9568599abac843eb0b9307d897c60c03e9f4ebbb","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150901.tgz"},"directories":{}},"1.7.0-dev.20150902":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150902","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"06e25377ffdb0f89550f1a418d3e769fdfc3de7e","_id":"typescript@1.7.0-dev.20150902","_shasum":"94a864c92c094972d04ddda5b45be0b3a7a0d705","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"94a864c92c094972d04ddda5b45be0b3a7a0d705","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150902.tgz"},"directories":{}},"1.6.0-beta":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-beta","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"5542e396d71b0a8100164cf24790fffcc5d5bbe2","_id":"typescript@1.6.0-beta","_shasum":"3e3027d92282dbc8dd22472cc01e592ecb5196c9","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"3e3027d92282dbc8dd22472cc01e592ecb5196c9","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-beta.tgz"},"directories":{}},"1.7.0-dev.20150903":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150903","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"690b87c2097b0101969c941f085b1f660ecc1a7e","_id":"typescript@1.7.0-dev.20150903","_shasum":"c0209454d786bfad0080c836e4bb6e49d6bfc7b3","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"c0209454d786bfad0080c836e4bb6e49d6bfc7b3","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150903.tgz"},"directories":{}},"1.7.0-dev.20150904":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150904","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"dc867368200feaf56bbb9bb3317bfe357cce3fd5","_id":"typescript@1.7.0-dev.20150904","_shasum":"be76af39353fd3d22cbb7a8dbe9d7585b2acd315","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"be76af39353fd3d22cbb7a8dbe9d7585b2acd315","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150904.tgz"},"directories":{}},"1.6.0-dev.20150905":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150905","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"4a85546f946f0cee28f77feaaa96d1c0797de09e","_id":"typescript@1.6.0-dev.20150905","_shasum":"728b246b9e1034e1c411b34a1ddf568794aaa4a8","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"728b246b9e1034e1c411b34a1ddf568794aaa4a8","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150905.tgz"},"directories":{}},"1.6.0-dev.20150906":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150906","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"971c7770314467964c536242becad2555ef9c758","_id":"typescript@1.6.0-dev.20150906","_shasum":"ecc103d38053d5065d28bd5f88933ebfbade6f21","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ecc103d38053d5065d28bd5f88933ebfbade6f21","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150906.tgz"},"directories":{}},"1.6.0-dev.20150907":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150907","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"971c7770314467964c536242becad2555ef9c758","_id":"typescript@1.6.0-dev.20150907","_shasum":"43a94fc14ac67d6aa5e89578c01f141429c24986","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"43a94fc14ac67d6aa5e89578c01f141429c24986","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150907.tgz"},"directories":{}},"1.6.0-dev.20150908":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150908","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"971c7770314467964c536242becad2555ef9c758","_id":"typescript@1.6.0-dev.20150908","_shasum":"4c708d1dc33c66131fbfafb9d34cc955594f38b3","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4c708d1dc33c66131fbfafb9d34cc955594f38b3","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150908.tgz"},"directories":{}},"1.6.0-dev.20150909":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150909","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"971c7770314467964c536242becad2555ef9c758","_id":"typescript@1.6.0-dev.20150909","_shasum":"84f0cc47c4bc91c3f3309f0e2a90bc55fd06d3e7","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"84f0cc47c4bc91c3f3309f0e2a90bc55fd06d3e7","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150909.tgz"},"directories":{}},"1.6.0-dev.20150910":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150910","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a5c72014b0c345f6978bfe2fa38e5711c256e5af","_id":"typescript@1.6.0-dev.20150910","_shasum":"fefe9ea9c629a7f2e74647aa1878fb21378539de","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"fefe9ea9c629a7f2e74647aa1878fb21378539de","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150910.tgz"},"directories":{}},"1.6.0-dev.20150911":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150911","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"b71969e45a7917db29a916a5aa9fca56a77ab048","_id":"typescript@1.6.0-dev.20150911","_shasum":"71e1b4b36c1d4aff757449ea6426a3ee2a4acec7","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"71e1b4b36c1d4aff757449ea6426a3ee2a4acec7","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150911.tgz"},"directories":{}},"1.6.0-dev.20150912":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150912","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"90273f995db63e5671964c636bd16ad2ea863906","_id":"typescript@1.6.0-dev.20150912","_shasum":"e9bf2409caa444ef6db0c1edd16ec34cc753717d","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e9bf2409caa444ef6db0c1edd16ec34cc753717d","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150912.tgz"},"directories":{}},"1.6.0-dev.20150913":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150913","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"90273f995db63e5671964c636bd16ad2ea863906","_id":"typescript@1.6.0-dev.20150913","_shasum":"93022604b3b9e154b6ad4b203234f3ba8204eb86","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"93022604b3b9e154b6ad4b203234f3ba8204eb86","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150913.tgz"},"directories":{}},"1.6.0-dev.20150914":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150914","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"90273f995db63e5671964c636bd16ad2ea863906","_id":"typescript@1.6.0-dev.20150914","_shasum":"867b18d42991a3b51a4d9cf619bd4e07d8aafd39","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"867b18d42991a3b51a4d9cf619bd4e07d8aafd39","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150914.tgz"},"directories":{}},"1.6.0-dev.20150915":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.0-dev.20150915","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"89718cf5a54fd67365d8f29e5f3e4a88f467bfe3","_id":"typescript@1.6.0-dev.20150915","_shasum":"4081386fa5adeef5aa5add29714e9ad9e1fcfca9","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4081386fa5adeef5aa5add29714e9ad9e1fcfca9","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.0-dev.20150915.tgz"},"directories":{}},"1.7.0-dev.20150916":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150916","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c9170b81a8f69994c1c03af50a10aafd9c75c524","_id":"typescript@1.7.0-dev.20150916","_shasum":"ab3258bc8779bfe373dee27dfca55e5f32d50eec","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ab3258bc8779bfe373dee27dfca55e5f32d50eec","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150916.tgz"},"directories":{}},"1.6.2":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.6.2","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a44d8e76c68e7c685cef3d34943158021acd04e5","_id":"typescript@1.6.2","_shasum":"5b27254abeb111027cbf9450d3431bc5843191dd","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5b27254abeb111027cbf9450d3431bc5843191dd","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.6.2.tgz"},"directories":{}},"1.7.0-dev.20150917":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150917","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c9170b81a8f69994c1c03af50a10aafd9c75c524","_id":"typescript@1.7.0-dev.20150917","_shasum":"7654d52fd67c1b9c8615b52285f7cfb4b4c301e9","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"7654d52fd67c1b9c8615b52285f7cfb4b4c301e9","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150917.tgz"},"directories":{}},"1.7.0-dev.20150918":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150918","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"cd390fd83b5f67f4a91c335c83147405515ad67e","_id":"typescript@1.7.0-dev.20150918","_shasum":"4788f8d6e4c438a23b354ee1da28c35cb99c705e","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4788f8d6e4c438a23b354ee1da28c35cb99c705e","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150918.tgz"},"directories":{}},"1.7.0-dev.20150919":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150919","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c28efb7572f7ddea824b5f476c49f4f48de71f4b","_id":"typescript@1.7.0-dev.20150919","_shasum":"4067f01f00c68b2061bfc673afd81f0b716eb3e7","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4067f01f00c68b2061bfc673afd81f0b716eb3e7","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150919.tgz"},"directories":{}},"1.7.0-dev.20150920":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150920","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"92f5f59a075a08de32a43b3dc09f7f54751b471e","_id":"typescript@1.7.0-dev.20150920","_shasum":"bffa407560373081cc74fc88a5059e13432e06d5","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"bffa407560373081cc74fc88a5059e13432e06d5","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150920.tgz"},"directories":{}},"1.7.0-dev.20150921":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150921","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"92f5f59a075a08de32a43b3dc09f7f54751b471e","_id":"typescript@1.7.0-dev.20150921","_shasum":"4fca86ae26638318370b14dce12280d85cf159c0","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4fca86ae26638318370b14dce12280d85cf159c0","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150921.tgz"},"directories":{}},"1.7.0-dev.20150922":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150922","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"7b48a182c05ea4dea81bab73ecbbe9e013a79e99","_id":"typescript@1.7.0-dev.20150922","_shasum":"a59b823db4052496e03a65f7bd93d40c612cf056","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a59b823db4052496e03a65f7bd93d40c612cf056","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150922.tgz"},"directories":{}},"1.7.0-dev.20150923":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150923","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"5a77d67b630b5337aac2d90eeabaf4a8cbd018e8","_id":"typescript@1.7.0-dev.20150923","_shasum":"c3489dd958e69b927b818aabe279ca88cf780da0","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"c3489dd958e69b927b818aabe279ca88cf780da0","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150923.tgz"},"directories":{}},"1.7.0-dev.20150924":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150924","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"5a77d67b630b5337aac2d90eeabaf4a8cbd018e8","_id":"typescript@1.7.0-dev.20150924","_shasum":"db25eee548514b94c0f030c6f957ee62a0e43b8a","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"db25eee548514b94c0f030c6f957ee62a0e43b8a","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150924.tgz"},"directories":{}},"1.7.0-dev.20150925":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150925","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","postinstall":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"b8667816094525bc6d0a310dfec4be6cf41fb4d6","_id":"typescript@1.7.0-dev.20150925","_shasum":"39ac9b726e6c68ae837cbf2bc37d3d12a6914a63","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"39ac9b726e6c68ae837cbf2bc37d3d12a6914a63","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150925.tgz"},"directories":{}},"1.7.0-dev.20150926":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150926","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d9559d58ca4f68bf51849d067fe2e9560b2e081f","_id":"typescript@1.7.0-dev.20150926","_shasum":"041bc4ce69914df379df141a4a3017bcbb505ced","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"041bc4ce69914df379df141a4a3017bcbb505ced","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150926.tgz"},"directories":{}},"1.7.0-dev.20150927":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150927","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d9559d58ca4f68bf51849d067fe2e9560b2e081f","_id":"typescript@1.7.0-dev.20150927","_shasum":"b51d9cb08748f226f642aa283fcfa91bc8155f4e","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"b51d9cb08748f226f642aa283fcfa91bc8155f4e","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150927.tgz"},"directories":{}},"1.7.0-dev.20150928":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150928","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d9559d58ca4f68bf51849d067fe2e9560b2e081f","_id":"typescript@1.7.0-dev.20150928","_shasum":"d6a843bbac2858726c20b9eaa752e58a9914872a","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d6a843bbac2858726c20b9eaa752e58a9914872a","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150928.tgz"},"directories":{}},"1.7.0-dev.20150929":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150929","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c55d6dc0e3d920cd31b8d983c863bf0eb1020709","_id":"typescript@1.7.0-dev.20150929","_shasum":"a34b25a22a21c5dd7f2d69a5b72d0362bbf8a02a","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a34b25a22a21c5dd7f2d69a5b72d0362bbf8a02a","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150929.tgz"},"directories":{}},"1.7.0-dev.20150930":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20150930","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e0bf8cc3849fd6207ed8f8d628d75ce8f40d757f","_id":"typescript@1.7.0-dev.20150930","_shasum":"12676a6beea3fcf3f2072f2cfb7c0f1ab34bafbe","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"12676a6beea3fcf3f2072f2cfb7c0f1ab34bafbe","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20150930.tgz"},"directories":{}},"1.7.0-dev.20151001":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20151001","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests && npm run lint","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"dfb95b869278a4b3e9cd81abf05b0b52553bcaa2","_id":"typescript@1.7.0-dev.20151001","_shasum":"5e2730627526a189876fc5aa92ecc3ff3eb2afef","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5e2730627526a189876fc5aa92ecc3ff3eb2afef","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20151001.tgz"},"directories":{}},"1.7.0-dev.20151002":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20151002","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests && npm run lint","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"cc95dcac1bec89ece5986b8a5c1e8e19bb160db2","_id":"typescript@1.7.0-dev.20151002","_shasum":"8e469d25a2180efcfa899bed91a9dcf5254f87b2","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8e469d25a2180efcfa899bed91a9dcf5254f87b2","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20151002.tgz"},"directories":{}},"1.7.0-dev.20151003":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20151003","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests && npm run lint","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"331d26f40271c7a21c6fa74ffac633b45f653dda","_id":"typescript@1.7.0-dev.20151003","_shasum":"6e35ece47cc78821529b78509f10439316450d75","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"6e35ece47cc78821529b78509f10439316450d75","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20151003.tgz"},"directories":{}},"1.7.0-dev.20151004":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20151004","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests && npm run lint","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"331d26f40271c7a21c6fa74ffac633b45f653dda","_id":"typescript@1.7.0-dev.20151004","_shasum":"0ed090c573f7c89db61f9517cbbcb7e199635db5","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0ed090c573f7c89db61f9517cbbcb7e199635db5","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20151004.tgz"},"directories":{}},"1.7.0-dev.20151005":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20151005","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests && npm run lint","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"331d26f40271c7a21c6fa74ffac633b45f653dda","_id":"typescript@1.7.0-dev.20151005","_shasum":"1491232d48f41996b9eb2a8a1ef3dcf271bd3033","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"1491232d48f41996b9eb2a8a1ef3dcf271bd3033","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20151005.tgz"},"directories":{}},"1.7.0-dev.20151006":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20151006","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"53cff210fd9c08f32764251bf773b8de9c454092","_id":"typescript@1.7.0-dev.20151006","_shasum":"863afb588b5130b7232375931c3824daf9b10842","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"863afb588b5130b7232375931c3824daf9b10842","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20151006.tgz"},"directories":{}},"1.7.0-dev.20151014":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20151014","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"21e30e0f59fe3e45aa1df2369687fbd534d78079","_id":"typescript@1.7.0-dev.20151014","_shasum":"88f47ffc08da523859e95b8ad1c999dc4f192997","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"88f47ffc08da523859e95b8ad1c999dc4f192997","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20151014.tgz"},"directories":{}},"1.7.0-dev.20151015":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20151015","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d703e092279a3f35d3b541db7de96ee0c217a702","_id":"typescript@1.7.0-dev.20151015","_shasum":"e193643a2b785b4458edc44d22c459c44d8b92ed","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e193643a2b785b4458edc44d22c459c44d8b92ed","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20151015.tgz"},"directories":{}},"1.7.0-dev.20151016":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.0-dev.20151016","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"302db0a9d58fe6b108c4ec455883fa7a3c4fd991","_id":"typescript@1.7.0-dev.20151016","_shasum":"638826bcb4fa50c215abf2208e2f655c03c296dc","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"638826bcb4fa50c215abf2208e2f655c03c296dc","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.0-dev.20151016.tgz"},"directories":{}},"1.8.0-dev.20151017":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151017","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6aeec13d7efd1e7615e158d7669de14f06f2b803","_id":"typescript@1.8.0-dev.20151017","_shasum":"3d064e65959ae074371ca20678bbd0e82daec6fa","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"3d064e65959ae074371ca20678bbd0e82daec6fa","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151017.tgz"},"directories":{}},"1.8.0-dev.20151018":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151018","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6aeec13d7efd1e7615e158d7669de14f06f2b803","_id":"typescript@1.8.0-dev.20151018","_shasum":"a6ddf655721b3a23f1b405c2e7051f019ed0bad6","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a6ddf655721b3a23f1b405c2e7051f019ed0bad6","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151018.tgz"},"directories":{}},"1.8.0-dev.20151019":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151019","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"28c2887d504f94b2a67191b1956632653c2acb5d","_id":"typescript@1.8.0-dev.20151019","_shasum":"1b5a51a8a34e493a40af7c720378d2ef74da2029","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"1b5a51a8a34e493a40af7c720378d2ef74da2029","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151019.tgz"},"directories":{}},"1.8.0-dev.20151020":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151020","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"1b3640760b96bcea0e595f68b4cbccf40068c3e1","_id":"typescript@1.8.0-dev.20151020","_shasum":"dd798f1ac00e8c3e4e9069df83124af871a9a5a7","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"dd798f1ac00e8c3e4e9069df83124af871a9a5a7","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151020.tgz"},"directories":{}},"1.8.0-dev.20151021":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151021","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"853e9a24621d6ee1520c2a51db8c0863b9556da1","_id":"typescript@1.8.0-dev.20151021","_shasum":"895d42b30e6d03d19ade64f393956e59b245b8f0","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"895d42b30e6d03d19ade64f393956e59b245b8f0","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151021.tgz"},"directories":{}},"1.8.0-dev.20151022":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151022","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"9afc2b3c8fc254a6d88af1e47e0c881cb498b329","_id":"typescript@1.8.0-dev.20151022","_shasum":"7739b192e97741d16ca53ea583e03fae5c06cace","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"7739b192e97741d16ca53ea583e03fae5c06cace","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151022.tgz"},"directories":{}},"1.8.0-dev.20151023":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151023","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"bede6edc5106e3a4fbbfa9472f3473e61d21c884","_id":"typescript@1.8.0-dev.20151023","_shasum":"6e6a3c23e11966673904c63a2136766aad91b4f3","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"6e6a3c23e11966673904c63a2136766aad91b4f3","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151023.tgz"},"directories":{}},"1.8.0-dev.20151024":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151024","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c4e54685c63509f85aa83b7ece05e3650b5ed8d3","_id":"typescript@1.8.0-dev.20151024","_shasum":"0d87f86c3917c1607ff2df87034345bcfe6be5bc","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0d87f86c3917c1607ff2df87034345bcfe6be5bc","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151024.tgz"},"directories":{}},"1.8.0-dev.20151025":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151025","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c3c66a40f1f6c5fd15337c62a410840d15934296","_id":"typescript@1.8.0-dev.20151025","_shasum":"04c961ad9e3739c3c2aaed9a7105cbd5b6ac6620","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"04c961ad9e3739c3c2aaed9a7105cbd5b6ac6620","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151025.tgz"},"directories":{}},"1.8.0-dev.20151026":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151026","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c3c66a40f1f6c5fd15337c62a410840d15934296","_id":"typescript@1.8.0-dev.20151026","_shasum":"e6f19393c6583ed0a0f5bb880cfeb97babb81b58","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e6f19393c6583ed0a0f5bb880cfeb97babb81b58","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151026.tgz"},"directories":{}},"1.8.0-dev.20151027":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151027","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a9058f9aa94da3be26663b9d98dc2f4498764331","_id":"typescript@1.8.0-dev.20151027","_shasum":"35aa18b1bdc171fce01c691a552c86cd3c2f0dde","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"35aa18b1bdc171fce01c691a552c86cd3c2f0dde","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151027.tgz"},"directories":{}},"1.8.0-dev.20151028":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151028","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"9201ba2857d97d683d9823aef83bf912f45e6284","_id":"typescript@1.8.0-dev.20151028","_shasum":"1f79cf084cdf80803cd8abaf16dba1ca19e5f05d","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"1f79cf084cdf80803cd8abaf16dba1ca19e5f05d","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151028.tgz"},"directories":{}},"1.8.0-dev.20151029":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151029","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"067e1ccef23ee12b7404c020079e45a993091597","_id":"typescript@1.8.0-dev.20151029","_shasum":"562e0052173b8af0c7fd7c485a7d74e2af1ec490","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"562e0052173b8af0c7fd7c485a7d74e2af1ec490","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151029.tgz"},"directories":{}},"1.8.0-dev.20151030":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151030","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"067e1ccef23ee12b7404c020079e45a993091597","_id":"typescript@1.8.0-dev.20151030","_shasum":"7e1bd7294bd522da6a18dbdd6bef4bccf7a7547b","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"7e1bd7294bd522da6a18dbdd6bef4bccf7a7547b","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151030.tgz"},"directories":{}},"1.8.0-dev.20151031":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151031","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"5cbcafadb9a4b7db2731dddfd103572377482a5c","_id":"typescript@1.8.0-dev.20151031","_shasum":"1c301478db52e39240bfff7086cb6429a45f5d9b","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"1c301478db52e39240bfff7086cb6429a45f5d9b","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151031.tgz"},"directories":{}},"1.8.0-dev.20151101":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151101","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"5cbcafadb9a4b7db2731dddfd103572377482a5c","_id":"typescript@1.8.0-dev.20151101","_shasum":"effb545d6e5a1edd2f289f9e8da69d6fa118100e","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"effb545d6e5a1edd2f289f9e8da69d6fa118100e","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151101.tgz"},"directories":{}},"1.8.0-dev.20151102":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151102","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"5cbcafadb9a4b7db2731dddfd103572377482a5c","_id":"typescript@1.8.0-dev.20151102","_shasum":"73aed16ea28bd3cbd21abba6349edbcb92f4f9d5","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"73aed16ea28bd3cbd21abba6349edbcb92f4f9d5","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151102.tgz"},"directories":{}},"1.8.0-dev.20151103":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151103","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ae2faf83ba746966728714e2f49e7d981822518d","_id":"typescript@1.8.0-dev.20151103","_shasum":"667f61aac78f0e1689d006b1fb7141f990c4bfce","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"667f61aac78f0e1689d006b1fb7141f990c4bfce","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151103.tgz"},"directories":{}},"1.8.0-dev.20151104":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151104","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2c644476fbeded909426b7c87025ad05c1e13a4d","_id":"typescript@1.8.0-dev.20151104","_shasum":"e45384feb78e01f9607425fdcf6e3b2af71a43a1","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e45384feb78e01f9607425fdcf6e3b2af71a43a1","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151104.tgz"},"directories":{}},"1.8.0-dev.20151105":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151105","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"12c6a7400dffc10c41f9245da64fbd5beeceb3dc","_id":"typescript@1.8.0-dev.20151105","_shasum":"11522aa6b65194737cbf4f6a71a79244787b351f","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"11522aa6b65194737cbf4f6a71a79244787b351f","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151105.tgz"},"directories":{}},"1.8.0-dev.20151106":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151106","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"9b4956fa1151e3fa07babcdfc421385a2f155487","_id":"typescript@1.8.0-dev.20151106","_shasum":"89052cb1ea9f1403633a719b22fbca0fedc419ff","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"89052cb1ea9f1403633a719b22fbca0fedc419ff","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151106.tgz"},"directories":{}},"1.8.0-dev.20151107":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151107","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d1c7a62a60b394165226aa37805b18c087788d1b","_id":"typescript@1.8.0-dev.20151107","_shasum":"9ada1104380da21852ebfac4721f56f8abdbc809","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"9ada1104380da21852ebfac4721f56f8abdbc809","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151107.tgz"},"directories":{}},"1.8.0-dev.20151108":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151108","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c3df2890fc9227707eb557faa752a7e7073dcb44","_id":"typescript@1.8.0-dev.20151108","_shasum":"da5a7aaae9a5fa3cefdca514fc00c5e18e5cad25","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"da5a7aaae9a5fa3cefdca514fc00c5e18e5cad25","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151108.tgz"},"directories":{}},"1.8.0-dev.20151109":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151109","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c3df2890fc9227707eb557faa752a7e7073dcb44","_id":"typescript@1.8.0-dev.20151109","_shasum":"a12e455d7ba5d5181a78da421266337612c7f481","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a12e455d7ba5d5181a78da421266337612c7f481","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151109.tgz"},"directories":{}},"1.8.0-dev.20151110":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151110","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"9c284805ec46ed4807f205d6d5b1434745039381","_id":"typescript@1.8.0-dev.20151110","_shasum":"f35fe46027bb6fb1dfb73013aaf21dea7fcbd081","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f35fe46027bb6fb1dfb73013aaf21dea7fcbd081","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151110.tgz"},"directories":{}},"1.8.0-dev.20151111":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151111","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"75364b69889bd293f078aeb4913853a2e6e31e54","_id":"typescript@1.8.0-dev.20151111","_shasum":"1d9dee6194249e28e67cee8b5028ccfdeb659461","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"1d9dee6194249e28e67cee8b5028ccfdeb659461","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151111.tgz"},"directories":{}},"1.8.0-dev.20151112":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151112","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ef02bf0915cae10c6debd9bf192786f98bbe9a04","_id":"typescript@1.8.0-dev.20151112","_shasum":"60c8834c48a69e66ff3d6e4c877091fad08ee8c3","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"60c8834c48a69e66ff3d6e4c877091fad08ee8c3","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151112.tgz"},"directories":{}},"1.8.0-dev.20151113":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151113","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"3d6312a1da2f38677f89ba23ca6a1d72efa54ba2","_id":"typescript@1.8.0-dev.20151113","_shasum":"95ebec2826077d3ffcdfb90c6af04d306fb0ad3e","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"95ebec2826077d3ffcdfb90c6af04d306fb0ad3e","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151113.tgz"},"directories":{}},"1.8.0-dev.20151114":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151114","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6b27ce4907b44d63ef7a218962514097347152e4","_id":"typescript@1.8.0-dev.20151114","_shasum":"61a91fa6d00c1c091ca08dd5a1b83e95629d36ce","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"61a91fa6d00c1c091ca08dd5a1b83e95629d36ce","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151114.tgz"},"directories":{}},"1.8.0-dev.20151115":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151115","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"abb7a130e30255c01b2a4bc7437d3a4dc4ba1605","_id":"typescript@1.8.0-dev.20151115","_shasum":"4eb2ffea495d3f8a650a42101a21bc32aaac386c","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4eb2ffea495d3f8a650a42101a21bc32aaac386c","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151115.tgz"},"directories":{}},"1.8.0-dev.20151116":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151116","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"abb7a130e30255c01b2a4bc7437d3a4dc4ba1605","_id":"typescript@1.8.0-dev.20151116","_shasum":"33e187196b11f2c3f04b7ba3d98cd83fed959606","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"33e187196b11f2c3f04b7ba3d98cd83fed959606","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151116.tgz"},"directories":{}},"1.8.0-dev.20151117":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151117","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"13bc120fe2f9afecc636b2d8a77946999d71a970","_id":"typescript@1.8.0-dev.20151117","_shasum":"3a945b1d0ffd1be4b912ce615a41f1ab3e1d5cfd","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"3a945b1d0ffd1be4b912ce615a41f1ab3e1d5cfd","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151117.tgz"},"directories":{}},"1.8.0-dev.20151118":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151118","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"5e84ed399ccd7ca1e3bdb71c64798ed0fe68cf22","_id":"typescript@1.8.0-dev.20151118","_shasum":"b63b8aae5ba97c1ffe25c36af9f5141ea827fd4d","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"b63b8aae5ba97c1ffe25c36af9f5141ea827fd4d","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151118.tgz"},"directories":{}},"1.8.0-dev.20151119":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151119","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"bd84b844ff8982ee0c2e8a7f9d777925760fea8a","_id":"typescript@1.8.0-dev.20151119","_shasum":"5289e9bd64efd721043206174fb21dbb96bb5d4d","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5289e9bd64efd721043206174fb21dbb96bb5d4d","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151119.tgz"},"directories":{}},"1.8.0-dev.20151120":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151120","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"883b8d9347ceebfce97d2a6312344cd91bb06aef","_id":"typescript@1.8.0-dev.20151120","_shasum":"b5a01a2e4e383f7e368413b68d5ba8f14703c092","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"b5a01a2e4e383f7e368413b68d5ba8f14703c092","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151120.tgz"},"directories":{}},"1.8.0-dev.20151121":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151121","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c94dcbd770f0ed8631678c69d00e3c2d4f30613a","_id":"typescript@1.8.0-dev.20151121","_shasum":"58d395ea1c851878f8e74c7a5765e7de0b6ce5a4","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"58d395ea1c851878f8e74c7a5765e7de0b6ce5a4","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151121.tgz"},"directories":{}},"1.8.0-dev.20151122":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151122","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c94dcbd770f0ed8631678c69d00e3c2d4f30613a","_id":"typescript@1.8.0-dev.20151122","_shasum":"2ded2e6f29097be402741256035ab54f9b473020","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"2ded2e6f29097be402741256035ab54f9b473020","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151122.tgz"},"directories":{}},"1.8.0-dev.20151123":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151123","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"fbaba90ac96fd296da1f5912aab95785806754dc","_id":"typescript@1.8.0-dev.20151123","_shasum":"5f8be34ae1a8d11a0cee55b45ca27484166f24a3","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5f8be34ae1a8d11a0cee55b45ca27484166f24a3","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151123.tgz"},"directories":{}},"1.8.0-dev.20151124":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151124","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"fb76dc95deecfee9e16d8e78b7abb4521901f840","_id":"typescript@1.8.0-dev.20151124","_shasum":"25c2c3c1551ad9d5283109132434948b25bcf581","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"25c2c3c1551ad9d5283109132434948b25bcf581","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151124.tgz"},"directories":{}},"1.8.0-dev.20151125":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151125","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"8909c3a2dd42f99ad6130be36c11f1efe57efbd3","_id":"typescript@1.8.0-dev.20151125","_shasum":"20ec8882857c96420eca11e66ba8c387eb1f6b16","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"20ec8882857c96420eca11e66ba8c387eb1f6b16","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151125.tgz"},"directories":{}},"1.8.0-dev.20151126":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151126","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"38215c68026f1abdd73ba6201c951b626d86d966","_id":"typescript@1.8.0-dev.20151126","_shasum":"fc01aa18ff63bc90fcf416fa482e8fc4eda6e24f","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"fc01aa18ff63bc90fcf416fa482e8fc4eda6e24f","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151126.tgz"},"directories":{}},"1.8.0-dev.20151127":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151127","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"38215c68026f1abdd73ba6201c951b626d86d966","_id":"typescript@1.8.0-dev.20151127","_shasum":"03ad7bf27d4f5d36457dede9fbdcc40c5eeade36","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"03ad7bf27d4f5d36457dede9fbdcc40c5eeade36","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151127.tgz"},"directories":{}},"1.8.0-dev.20151128":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151128","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"38215c68026f1abdd73ba6201c951b626d86d966","_id":"typescript@1.8.0-dev.20151128","_shasum":"316603f8933f8ad7deef0c382c907ecb21574bb5","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"316603f8933f8ad7deef0c382c907ecb21574bb5","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151128.tgz"},"directories":{}},"1.8.0-dev.20151129":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151129","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2f282a786a2690cbe6be6bc40898612b6155e48c","_id":"typescript@1.8.0-dev.20151129","_shasum":"4c18e707827e47ca3c294e4998400aee55247bda","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4c18e707827e47ca3c294e4998400aee55247bda","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151129.tgz"},"directories":{}},"1.8.0-dev.20151130":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151130","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2f282a786a2690cbe6be6bc40898612b6155e48c","_id":"typescript@1.8.0-dev.20151130","_shasum":"155387bf9fcdaf0e9dcde95e2168598a4aa002e1","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"155387bf9fcdaf0e9dcde95e2168598a4aa002e1","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151130.tgz"},"directories":{}},"1.7.3":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.3","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"latest","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a1ff917aa2ad10507673bebd2a61b669ad839eaf","_id":"typescript@1.7.3","_shasum":"adf81fc4dc68d5374cc28d8bf2b660957468cff7","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"adf81fc4dc68d5374cc28d8bf2b660957468cff7","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.3.tgz"},"directories":{}},"1.8.0-dev.20151201":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151201","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"dac1874c38c29352142757d14b06221af7590293","_id":"typescript@1.8.0-dev.20151201","_shasum":"dea113b35fead7e8bb820a5b0ebbd20e899dd65e","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"dea113b35fead7e8bb820a5b0ebbd20e899dd65e","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151201.tgz"},"directories":{}},"1.8.0-dev.20151202":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151202","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"19d7e629da07003de971a70fdf91aa5a560931ea","_id":"typescript@1.8.0-dev.20151202","_shasum":"8905ff9db6a6ce03ddc0a7be44193e573c645b13","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8905ff9db6a6ce03ddc0a7be44193e573c645b13","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151202.tgz"},"directories":{}},"1.8.0-dev.20151203":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151203","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"4137a103d886c8e042386b76b8e38ba173160602","_id":"typescript@1.8.0-dev.20151203","_shasum":"74386b5adea59ae0d76029a9c1b0f09e80b62fd7","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"74386b5adea59ae0d76029a9c1b0f09e80b62fd7","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151203.tgz"},"directories":{}},"1.8.0-dev.20151204":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151204","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"3a4ac33240fb4d0641ecc8b385a3ad34af5f648c","_id":"typescript@1.8.0-dev.20151204","_shasum":"972b3781849183561a80d6e2d47fba9798d78f61","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"972b3781849183561a80d6e2d47fba9798d78f61","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151204.tgz"},"directories":{}},"1.8.0-dev.20151210":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151210","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ecfeb219657d94288d3fc28b82bb3947719f49f8","_id":"typescript@1.8.0-dev.20151210","_shasum":"14b96a95c5c6c5a860d773b7a1601fd2c5c0e04e","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"14b96a95c5c6c5a860d773b7a1601fd2c5c0e04e","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151210.tgz"},"directories":{}},"1.8.0-dev.20151211":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151211","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ff784770be6355c37cd4e119bf149c3ebb56f26b","_id":"typescript@1.8.0-dev.20151211","_shasum":"2049992470fd0bb7e85de3bd24b3d512a16afac7","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"2049992470fd0bb7e85de3bd24b3d512a16afac7","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151211.tgz"},"directories":{}},"1.8.0-dev.20151212":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151212","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"9d1cc311448a10f765b11afe3eff9d217994e114","_id":"typescript@1.8.0-dev.20151212","_shasum":"0953ab469e7071a4365870b0fdabd10b06a98d34","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0953ab469e7071a4365870b0fdabd10b06a98d34","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151212.tgz"},"directories":{}},"1.8.0-dev.20151213":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151213","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"87036fe9f769c03f0a6b84148d385a7a8015c957","_id":"typescript@1.8.0-dev.20151213","_shasum":"c4580626596c1798ee34df89dab87b56e22e7ad5","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"c4580626596c1798ee34df89dab87b56e22e7ad5","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151213.tgz"},"directories":{}},"1.8.0-dev.20151214":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151214","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"87036fe9f769c03f0a6b84148d385a7a8015c957","_id":"typescript@1.8.0-dev.20151214","_shasum":"1ab06f431c7a93c344e606505be738da08bd7d80","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"1ab06f431c7a93c344e606505be738da08bd7d80","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151214.tgz"},"directories":{}},"1.7.5":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.7.5","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"~2","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"1a8406d8b05e8efea768a1788cc9024f9425a1e5","_id":"typescript@1.7.5","_shasum":"a80fc231d9b95afeb9d10f0589560428dd0a045e","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a80fc231d9b95afeb9d10f0589560428dd0a045e","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.7.5.tgz"},"directories":{}},"1.8.0-dev.20151215":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151215","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2f447ee005ad8970cb1af64e43b3a52efe7b4ff3","_id":"typescript@1.8.0-dev.20151215","_shasum":"645efae13cfbb51ce1410a0e3d396b072f784377","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"645efae13cfbb51ce1410a0e3d396b072f784377","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151215.tgz"},"directories":{}},"1.8.0-dev.20151216":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151216","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"55d4f0f7e40a2b8ec708a316448d43df682d03cd","_id":"typescript@1.8.0-dev.20151216","_shasum":"d5e3a4c4d32ca0178806fa1e15631e9839285290","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d5e3a4c4d32ca0178806fa1e15631e9839285290","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151216.tgz"},"directories":{}},"1.8.0-dev.20151217":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151217","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"55d4f0f7e40a2b8ec708a316448d43df682d03cd","_id":"typescript@1.8.0-dev.20151217","_shasum":"32ce3bfc844567d7bde712705a680bea4be66d78","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"32ce3bfc844567d7bde712705a680bea4be66d78","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151217.tgz"},"directories":{}},"1.8.0-dev.20151218":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151218","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"bb1e5ab5ea104cede32d8bda00f8c689ddcc84a9","_id":"typescript@1.8.0-dev.20151218","_shasum":"a81dcf35462e360cdc60fbc7f008091c0cc7c0bc","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a81dcf35462e360cdc60fbc7f008091c0cc7c0bc","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151218.tgz"},"directories":{}},"1.8.0-dev.20151219":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151219","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"66a0f1d2ea9b100a1df857728af66a6e62f9f31b","_id":"typescript@1.8.0-dev.20151219","_shasum":"d56df3437a20e4fb7297d35adf5aefc27ab0a771","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d56df3437a20e4fb7297d35adf5aefc27ab0a771","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151219.tgz"},"directories":{}},"1.8.0-dev.20151220":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151220","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"93a459b405314b4d4216b987be644255e4212265","_id":"typescript@1.8.0-dev.20151220","_shasum":"25fedec2a47fce49b696f1e1daf5a1578331a0b5","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"25fedec2a47fce49b696f1e1daf5a1578331a0b5","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151220.tgz"},"directories":{}},"1.8.0-dev.20151221":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151221","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"93a459b405314b4d4216b987be644255e4212265","_id":"typescript@1.8.0-dev.20151221","_shasum":"ceb240f5be22312ad9992b9da387243d0ed73a0c","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ceb240f5be22312ad9992b9da387243d0ed73a0c","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151221.tgz"},"directories":{}},"1.8.0-dev.20151222":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151222","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"7785e8492670eeb65c19461f79db0b353ce63f76","_id":"typescript@1.8.0-dev.20151222","_shasum":"c739cef75efa8d01d82798c9dfe928f9b7c77197","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"c739cef75efa8d01d82798c9dfe928f9b7c77197","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151222.tgz"},"directories":{}},"1.8.0-dev.20151223":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151223","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"72bb1d3decb1b8a8daeab3523275b2d89065410b","_id":"typescript@1.8.0-dev.20151223","_shasum":"cd8a8a696691c169b7a6d5a2c62526239798afb6","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"cd8a8a696691c169b7a6d5a2c62526239798afb6","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151223.tgz"},"directories":{}},"1.8.0-dev.20151224":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151224","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"72bb1d3decb1b8a8daeab3523275b2d89065410b","_id":"typescript@1.8.0-dev.20151224","_shasum":"a3d740a7084001062cd3766b4fdcf512b05cf6ea","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a3d740a7084001062cd3766b4fdcf512b05cf6ea","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151224.tgz"},"directories":{}},"1.8.0-dev.20151225":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151225","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"72bb1d3decb1b8a8daeab3523275b2d89065410b","_id":"typescript@1.8.0-dev.20151225","_shasum":"8c7c7c8481c1973b79f9b1ef1fe9eb401ee729e3","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8c7c7c8481c1973b79f9b1ef1fe9eb401ee729e3","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151225.tgz"},"directories":{}},"1.8.0-dev.20151226":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151226","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"72bb1d3decb1b8a8daeab3523275b2d89065410b","_id":"typescript@1.8.0-dev.20151226","_shasum":"f1f06f8fc537129216a2161d2e092e772aaca618","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f1f06f8fc537129216a2161d2e092e772aaca618","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151226.tgz"},"directories":{}},"1.8.0-dev.20151227":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151227","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"72bb1d3decb1b8a8daeab3523275b2d89065410b","_id":"typescript@1.8.0-dev.20151227","_shasum":"4edde5442af8f1ab4e478c986c48925faa82db76","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4edde5442af8f1ab4e478c986c48925faa82db76","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151227.tgz"},"directories":{}},"1.8.0-dev.20151228":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151228","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"72bb1d3decb1b8a8daeab3523275b2d89065410b","_id":"typescript@1.8.0-dev.20151228","_shasum":"229f44f2489828efaac0b77462964eea48fbbbb5","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"229f44f2489828efaac0b77462964eea48fbbbb5","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151228.tgz"},"directories":{}},"1.8.0-dev.20151229":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151229","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"72bb1d3decb1b8a8daeab3523275b2d89065410b","_id":"typescript@1.8.0-dev.20151229","_shasum":"b2be8dd51237df9429f33cf51793b29da149fe48","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"b2be8dd51237df9429f33cf51793b29da149fe48","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151229.tgz"},"directories":{}},"1.8.0-dev.20151230":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151230","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"376534981220fbbfee39ae97299aafe0d9c473ce","_id":"typescript@1.8.0-dev.20151230","_shasum":"61b3600eed002574fce96fedb95d4c231550a976","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"61b3600eed002574fce96fedb95d4c231550a976","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151230.tgz"},"directories":{}},"1.8.0-dev.20151231":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20151231","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"376534981220fbbfee39ae97299aafe0d9c473ce","_id":"typescript@1.8.0-dev.20151231","_shasum":"e31384479c8da17cc3a3d4f65942d761e65df610","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e31384479c8da17cc3a3d4f65942d761e65df610","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20151231.tgz"},"directories":{}},"1.8.0-dev.20160101":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160101","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"376534981220fbbfee39ae97299aafe0d9c473ce","_id":"typescript@1.8.0-dev.20160101","_shasum":"95793742b19b5160510d30d5fb7e46a4db7354d3","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"95793742b19b5160510d30d5fb7e46a4db7354d3","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160101.tgz"},"directories":{}},"1.8.0-dev.20160102":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160102","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6be02062423a6b61d11cd58736c06afa2c8552b2","_id":"typescript@1.8.0-dev.20160102","_shasum":"522cc5e879ec8fec35af1c2fd9fa96788fc65239","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"522cc5e879ec8fec35af1c2fd9fa96788fc65239","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160102.tgz"},"directories":{}},"1.8.0-dev.20160103":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160103","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6be02062423a6b61d11cd58736c06afa2c8552b2","_id":"typescript@1.8.0-dev.20160103","_shasum":"0c2d67d3dd9faf0b0cab7baa1c63a0443ddf7529","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0c2d67d3dd9faf0b0cab7baa1c63a0443ddf7529","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160103.tgz"},"directories":{}},"1.8.0-dev.20160104":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160104","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6be02062423a6b61d11cd58736c06afa2c8552b2","_id":"typescript@1.8.0-dev.20160104","_shasum":"86f087fd295670d885ab60aa4b3e16466db35570","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"86f087fd295670d885ab60aa4b3e16466db35570","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160104.tgz"},"directories":{}},"1.8.0-dev.20160105":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160105","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"fec691ec222374646a64e9b746df5308d98da8c1","_id":"typescript@1.8.0-dev.20160105","_shasum":"a083b06c2c560b68174c821e643206586af2d389","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a083b06c2c560b68174c821e643206586af2d389","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160105.tgz"},"directories":{}},"1.8.0-dev.20160106":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160106","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ba0f7f52abc0ab93f573b9faf3c8c8ce29161181","_id":"typescript@1.8.0-dev.20160106","_shasum":"51e09f12a071f7d1ed653dc5fb8ade14c3cf5f35","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"51e09f12a071f7d1ed653dc5fb8ade14c3cf5f35","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160106.tgz"},"directories":{}},"1.8.0-dev.20160107":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160107","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a861913852880aa266828542a7fdac16d139172e","_id":"typescript@1.8.0-dev.20160107","_shasum":"5b09d2e54b41965302839d40f1aec18858809a64","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5b09d2e54b41965302839d40f1aec18858809a64","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160107.tgz"},"directories":{}},"1.8.0-dev.20160108":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160108","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a444be84c44b26b3e5ef54cb15ad06504a205a94","_id":"typescript@1.8.0-dev.20160108","_shasum":"656ec0577b949bfa2790769c749d5726568dc81e","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"656ec0577b949bfa2790769c749d5726568dc81e","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160108.tgz"},"directories":{}},"1.8.0-dev.20160109":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160109","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"531392811214383a4c38aacda5bbc37cc7a8d860","_id":"typescript@1.8.0-dev.20160109","_shasum":"4e77d8c4e98e5a39c92138adaaa6de55f0386604","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4e77d8c4e98e5a39c92138adaaa6de55f0386604","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160109.tgz"},"directories":{}},"1.8.0-dev.20160110":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160110","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"531392811214383a4c38aacda5bbc37cc7a8d860","_id":"typescript@1.8.0-dev.20160110","_shasum":"dd3b5590d56010dbb782044930ad4d04979305c8","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"dd3b5590d56010dbb782044930ad4d04979305c8","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160110.tgz"},"directories":{}},"1.8.0-dev.20160111":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160111","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"8cf347c0885a08dfbbf070d4610510c3f7f453ac","_id":"typescript@1.8.0-dev.20160111","_shasum":"6a67aa500dd140d7f633596f1e6c5565fd4b3de8","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"6a67aa500dd140d7f633596f1e6c5565fd4b3de8","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160111.tgz"},"directories":{}},"1.8.0-dev.20160112":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160112","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"33bfd92f4866e01d373ce0fdea7737e849b9c840","_id":"typescript@1.8.0-dev.20160112","_shasum":"86e9f1626a3fc9b4e6b21feedd12b36922c61854","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"86e9f1626a3fc9b4e6b21feedd12b36922c61854","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160112.tgz"},"directories":{}},"1.8.0-dev.20160113":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160113","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"5f024a3c9f08d8475ca951db4a18858b42f665bf","_id":"typescript@1.8.0-dev.20160113","_shasum":"dc560834fafb60aab221ebf893dc0ffd72bc7fcc","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"dc560834fafb60aab221ebf893dc0ffd72bc7fcc","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160113.tgz"},"directories":{}},"1.8.0-dev.20160114":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160114","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"9df1ed4dd32408fcaa92d031d1f3ff6468506b95","_id":"typescript@1.8.0-dev.20160114","_shasum":"1e14eddd0ffa60b720ee28a159871b906e0dfdaa","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"1e14eddd0ffa60b720ee28a159871b906e0dfdaa","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160114.tgz"},"directories":{}},"1.8.0-dev.20160115":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160115","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"1.8.0-dev.20160113","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"efc573f263156e1cd5d62b64375f9c99ef294f97","_id":"typescript@1.8.0-dev.20160115","_shasum":"f0f08b6791e07e367cd4413eee1956ec9d88aeff","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f0f08b6791e07e367cd4413eee1956ec9d88aeff","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160115.tgz"},"directories":{}},"1.8.0-dev.20160116":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160116","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"1.8.0-dev.20160113","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c6b0cf1a03e8e23ccb0baad3889a126aa4d970f4","_id":"typescript@1.8.0-dev.20160116","_shasum":"6b16fed8b3a33ef62e08fb16d7859292811e0800","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"6b16fed8b3a33ef62e08fb16d7859292811e0800","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160116.tgz"},"directories":{}},"1.8.0-dev.20160117":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160117","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"31bbac3c11c82af6cb93fd26ccf1632da6a04353","_id":"typescript@1.8.0-dev.20160117","_shasum":"01de25b99b7beacfb0fa9931fe179d34973c72e6","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"01de25b99b7beacfb0fa9931fe179d34973c72e6","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160117.tgz"},"directories":{}},"1.8.0-dev.20160118":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160118","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"31bbac3c11c82af6cb93fd26ccf1632da6a04353","_id":"typescript@1.8.0-dev.20160118","_shasum":"a9a39c3255eaa57782672e2b38edf4c4a64b0834","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a9a39c3255eaa57782672e2b38edf4c4a64b0834","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160118.tgz"},"directories":{}},"1.8.0-dev.20160119":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160119","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"31bbac3c11c82af6cb93fd26ccf1632da6a04353","_id":"typescript@1.8.0-dev.20160119","_shasum":"ff29599240182b35444166ded1a5b874c9b025f6","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ff29599240182b35444166ded1a5b874c9b025f6","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160119.tgz"},"directories":{}},"1.8.0-dev.20160120":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160120","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"56141c2f8439df1a17f45f8c59c1cccba8964951","_id":"typescript@1.8.0-dev.20160120","_shasum":"55b9ed4b46a690ed56c362b49ddbc2f80db7f787","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"55b9ed4b46a690ed56c362b49ddbc2f80db7f787","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160120.tgz"},"directories":{}},"1.8.0-dev.20160121":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160121","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ebfdeaab0c0f7bcb850c8e5cc4899f9c5a938107","_id":"typescript@1.8.0-dev.20160121","_shasum":"2752deae010d5952a9adcafe6c4a57e24dec9f05","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"2752deae010d5952a9adcafe6c4a57e24dec9f05","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160121.tgz"},"directories":{}},"1.8.0-dev.20160122":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160122","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"931d162620c7e09377c12875834e1838c4cdd51b","_id":"typescript@1.8.0-dev.20160122","_shasum":"69885016bf5f4a9a2ce97028cfa1b2d4f159c509","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"69885016bf5f4a9a2ce97028cfa1b2d4f159c509","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160122.tgz"},"directories":{}},"1.8.0-dev.20160123":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160123","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"87fdfc81942ce7499bde0c6832fd7d551bb81c98","_id":"typescript@1.8.0-dev.20160123","_shasum":"2e160737e41a1e04c3eb5bf8f6d911a5fa18f7d7","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"2e160737e41a1e04c3eb5bf8f6d911a5fa18f7d7","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160123.tgz"},"directories":{}},"1.8.0-dev.20160124":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160124","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"87fdfc81942ce7499bde0c6832fd7d551bb81c98","_id":"typescript@1.8.0-dev.20160124","_shasum":"78383316a62c5fdb12f765ecac60e21cd662bafb","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"78383316a62c5fdb12f765ecac60e21cd662bafb","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160124.tgz"},"directories":{}},"1.8.0-dev.20160125":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0-dev.20160125","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"f947f6abb430987a22270561938e6cb1b471c654","_id":"typescript@1.8.0-dev.20160125","_shasum":"62a8df4066e3a67f8b98ed28911d43fae6b01803","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"62a8df4066e3a67f8b98ed28911d43fae6b01803","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0-dev.20160125.tgz"},"directories":{}},"1.9.0-dev.20160126":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160126","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"f70e255fa0bc29d77c535ccf7eaaae9ad91dadca","_id":"typescript@1.9.0-dev.20160126","_shasum":"8cca11ee0dfada2e7a01b72037807db532f6dd56","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8cca11ee0dfada2e7a01b72037807db532f6dd56","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160126.tgz"},"directories":{}},"1.9.0-dev.20160127":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160127","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"265069e296a865e472b70f326840ca7b46f4ec39","_id":"typescript@1.9.0-dev.20160127","_shasum":"ddb403dee5578a7b24b052ea7904bb4f03be0ff2","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ddb403dee5578a7b24b052ea7904bb4f03be0ff2","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160127.tgz"},"directories":{}},"1.9.0-dev.20160128":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160128","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"2.3.4","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"0981719bedcfca41c8b85e4aa80d44cb2175836a","_id":"typescript@1.9.0-dev.20160128","_shasum":"481cd7ac32aafe8bab9c4ec4c9d9d5d9c57cce53","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"481cd7ac32aafe8bab9c4ec4c9d9d5d9c57cce53","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160128.tgz"},"directories":{}},"1.8.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.0","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"2.3.4","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a288b84632c1400806df55025ca6b568cfa4d00e","_id":"typescript@1.8.0","_shasum":"cc5bc63d7f7d84ea26debd7adb774c0362b0ec11","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"cc5bc63d7f7d84ea26debd7adb774c0362b0ec11","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.0.tgz"},"directories":{}},"1.9.0-dev.20160129":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160129","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"2.3.4","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e954929d4b00b86b93e7f83ab461223cd4747277","_id":"typescript@1.9.0-dev.20160129","_shasum":"d6c9f0ba7c29726ed8627e3a6e8e5e32786d8529","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d6c9f0ba7c29726ed8627e3a6e8e5e32786d8529","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160129.tgz"},"directories":{}},"1.9.0-dev.20160130":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160130","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ebb1828763eb6cdf37a39b62654108b14621d9fd","_id":"typescript@1.9.0-dev.20160130","_shasum":"954603b0f66156395b096aaf159cd336a104ff89","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"954603b0f66156395b096aaf159cd336a104ff89","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160130.tgz"},"directories":{}},"1.9.0-dev.20160131":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160131","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"39216e8811c2a11d8536b8d7e72dc12383c36c8e","_id":"typescript@1.9.0-dev.20160131","_shasum":"5c789808a2b2ec65485104ea779690c87f11a21b","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5c789808a2b2ec65485104ea779690c87f11a21b","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160131.tgz"},"directories":{}},"1.9.0-dev.20160201":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160201","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"39216e8811c2a11d8536b8d7e72dc12383c36c8e","_id":"typescript@1.9.0-dev.20160201","_shasum":"7af05425031d9e93cdc4c3ef3b2145bf6321f1fe","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"7af05425031d9e93cdc4c3ef3b2145bf6321f1fe","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160201.tgz"},"directories":{}},"1.9.0-dev.20160202":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160202","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"085593375723006b81d6c0278df98206c389c82b","_id":"typescript@1.9.0-dev.20160202","_shasum":"02c2869eea489e8051f3b9b15483ae7c037a19e6","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"02c2869eea489e8051f3b9b15483ae7c037a19e6","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160202.tgz"},"_npmOperationalInternal":{"host":"packages-8-eu.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160202.tgz_1454396874854_0.9711095087695867"},"directories":{}},"1.9.0-dev.20160203":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160203","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"33ef35889397f5e100b556935f906b355402b4f5","_id":"typescript@1.9.0-dev.20160203","_shasum":"69756d9a617ca5d6205d5cb6af558b7991ad6781","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"69756d9a617ca5d6205d5cb6af558b7991ad6781","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160203.tgz"},"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160203.tgz_1454483276246_0.5838871169835329"},"directories":{}},"1.9.0-dev.20160204":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160204","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2fde7ab8fe6f45b8875691a1487527c7a598a87a","_id":"typescript@1.9.0-dev.20160204","_shasum":"8ca2777f1102cf7a45b14e6020f846eef2a17303","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8ca2777f1102cf7a45b14e6020f846eef2a17303","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160204.tgz"},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160204.tgz_1454569696822_0.8117012321017683"},"directories":{}},"1.9.0-dev.20160205":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160205","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a324176102b4657b4de6759b5d03f5eeda38f422","_id":"typescript@1.9.0-dev.20160205","_shasum":"4430520ea59f9ee8797819ea40b837987f87cacf","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4430520ea59f9ee8797819ea40b837987f87cacf","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160205.tgz"},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160205.tgz_1454656070166_0.019713323563337326"},"directories":{}},"1.9.0-dev.20160206":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160206","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d27d10ce2ff013d66ff73890726b06587bda18fa","_id":"typescript@1.9.0-dev.20160206","_shasum":"8dc290f53473fa1acf771b2473342e1a99d91bd6","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8dc290f53473fa1acf771b2473342e1a99d91bd6","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160206.tgz"},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160206.tgz_1454742474366_0.9617997200693935"},"directories":{}},"1.9.0-dev.20160207":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160207","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d27d10ce2ff013d66ff73890726b06587bda18fa","_id":"typescript@1.9.0-dev.20160207","_shasum":"5cea8edbcda05464ff869b484e4291e740bf0184","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5cea8edbcda05464ff869b484e4291e740bf0184","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160207.tgz"},"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160207.tgz_1454828898519_0.22232033452019095"},"directories":{}},"1.9.0-dev.20160208":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160208","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"83c8c7db50c37394e24e2bef4332b78d5c0a2c6c","_id":"typescript@1.9.0-dev.20160208","_shasum":"ad7256de7632000e647ce49c7de50378a9e7ceda","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ad7256de7632000e647ce49c7de50378a9e7ceda","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160208.tgz"},"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160208.tgz_1454915281655_0.269433454843238"},"directories":{}},"1.9.0-dev.20160209":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160209","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"4bf104349d621d85a78dd7a45dbdb6b519d53998","_id":"typescript@1.9.0-dev.20160209","_shasum":"47a5f9d54f3a5dde770851b53465a6d9e61336d8","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"47a5f9d54f3a5dde770851b53465a6d9e61336d8","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160209.tgz"},"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160209.tgz_1455001669260_0.7950323321856558"},"directories":{}},"1.9.0-dev.20160210":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160210","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"dc0ff24dede91a29b8de39b4d0fe94ce2af26cba","_id":"typescript@1.9.0-dev.20160210","_shasum":"e5c36f17c4b85e16b176f54b646ce055ee5565c2","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e5c36f17c4b85e16b176f54b646ce055ee5565c2","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160210.tgz"},"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160210.tgz_1455088108575_0.23514309711754322"},"directories":{}},"1.9.0-dev.20160211":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160211","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"faeae5e099bd73175d0e43850918172c4b6beeb6","_id":"typescript@1.9.0-dev.20160211","_shasum":"aad950968463763470e71a8ba917e1945535a5cb","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"aad950968463763470e71a8ba917e1945535a5cb","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160211.tgz"},"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160211.tgz_1455174480938_0.11620918731205165"},"directories":{}},"1.9.0-dev.20160212":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160212","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"bf234887b0455deb142dce6854e77f4901533288","_id":"typescript@1.9.0-dev.20160212","_shasum":"17f75b4831493798328585de69176e86d4fbf425","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"17f75b4831493798328585de69176e86d4fbf425","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160212.tgz"},"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160212.tgz_1455260887734_0.40710390196181834"},"directories":{}},"1.9.0-dev.20160213":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160213","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c7fcd0204caf863f796fdb31b12f6c36debe431f","_id":"typescript@1.9.0-dev.20160213","_shasum":"223bf46fbfdb7113d32bef4f23db1ff03f9c94d3","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"223bf46fbfdb7113d32bef4f23db1ff03f9c94d3","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160213.tgz"},"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160213.tgz_1455347281222_0.5364826386794448"},"directories":{}},"1.9.0-dev.20160214":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160214","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"af9dc417478672e05925b2af8b5b5924471bb0f9","_id":"typescript@1.9.0-dev.20160214","_shasum":"e287ddc553655e8bea03d93d0de44049c1289513","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e287ddc553655e8bea03d93d0de44049c1289513","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160214.tgz"},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160214.tgz_1455433579553_0.06829693727195263"},"directories":{}},"1.9.0-dev.20160215":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160215","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"af9dc417478672e05925b2af8b5b5924471bb0f9","_id":"typescript@1.9.0-dev.20160215","_shasum":"8eb7b72ff0f52defd779d513592d1378c70afa6b","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8eb7b72ff0f52defd779d513592d1378c70afa6b","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160215.tgz"},"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160215.tgz_1455519957563_0.9513211254961789"},"directories":{}},"1.9.0-dev.20160216":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160216","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"af9dc417478672e05925b2af8b5b5924471bb0f9","_id":"typescript@1.9.0-dev.20160216","_shasum":"af635ab38efc724a3eb32b4afe6425916c691c5c","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"af635ab38efc724a3eb32b4afe6425916c691c5c","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160216.tgz"},"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160216.tgz_1455606361415_0.5276871973183006"},"directories":{}},"1.9.0-dev.20160217":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160217","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"bde20c4ec7aa93e832a4abafab8815643effd660","_id":"typescript@1.9.0-dev.20160217","_shasum":"513374d962e9720b0e840d3f5b4018a6d99a27a2","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"513374d962e9720b0e840d3f5b4018a6d99a27a2","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160217.tgz"},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160217.tgz_1455693060726_0.09490322903729975"},"directories":{}},"1.9.0-dev.20160218":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160218","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"8a050ea18d51ee631e2ba4bdd13103c83ae0153a","_id":"typescript@1.9.0-dev.20160218","_shasum":"c5f37a9928a7069a3d46882d8126cdd5fa0f7f7c","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"c5f37a9928a7069a3d46882d8126cdd5fa0f7f7c","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160218.tgz"},"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160218.tgz_1455779314841_0.9889128576032817"},"directories":{}},"1.9.0-dev.20160219":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160219","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"3663d400270ccae8b69cbeeded8ffdc8fa12d7ad","_id":"typescript@1.9.0-dev.20160219","_shasum":"ae271b3610b5267a9ca4c48dcbddedcde54dcbc7","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ae271b3610b5267a9ca4c48dcbddedcde54dcbc7","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160219.tgz"},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160219.tgz_1455865550471_0.8507915115915239"},"directories":{}},"1.9.0-dev.20160220":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160220","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"11ec01b4760ab6be402cb9ae1fb6f6ff13b2880f","_id":"typescript@1.9.0-dev.20160220","_shasum":"ee15956a40b4b38048f88d9755ac2aab863835d9","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ee15956a40b4b38048f88d9755ac2aab863835d9","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160220.tgz"},"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160220.tgz_1455951966168_0.9614685259293765"},"directories":{}},"1.9.0-dev.20160221":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160221","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"0436ba0cfbbc7ab431db53bd622b6f1988f72038","_id":"typescript@1.9.0-dev.20160221","_shasum":"2cfeb7b817062484294448c0cb9f9e116d34cbb6","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"2cfeb7b817062484294448c0cb9f9e116d34cbb6","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160221.tgz"},"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160221.tgz_1456038359902_0.7702808754984289"},"directories":{}},"1.9.0-dev.20160222":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160222","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"0436ba0cfbbc7ab431db53bd622b6f1988f72038","_id":"typescript@1.9.0-dev.20160222","_shasum":"7cb083649b2d2a114a924c55a38ed13b853ed06c","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"7cb083649b2d2a114a924c55a38ed13b853ed06c","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160222.tgz"},"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160222.tgz_1456124768245_0.6694028319325298"},"directories":{}},"1.8.2":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.2","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"2.3.4","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e5dd34f9e69f517182abfc996a10b8312b14e015","_id":"typescript@1.8.2","_shasum":"4d2ad7db172be67a913d09862b510133bad61b33","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4d2ad7db172be67a913d09862b510133bad61b33","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.2.tgz"},"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/typescript-1.8.2.tgz_1456180363305_0.6699868906289339"},"directories":{}},"1.9.0-dev.20160223":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160223","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e2c95551b348b10bed7d42fdaff857143e631a0d","_id":"typescript@1.9.0-dev.20160223","_shasum":"297112467fb2a19be8b318e831d7eee6d5bc934d","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"297112467fb2a19be8b318e831d7eee6d5bc934d","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160223.tgz"},"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160223.tgz_1456211306416_0.7794809127226472"},"directories":{}},"1.9.0-dev.20160224":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160224","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e2c95551b348b10bed7d42fdaff857143e631a0d","_id":"typescript@1.9.0-dev.20160224","_shasum":"315e3c25c7913b6740106c1f76201b4d3dd06f56","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"315e3c25c7913b6740106c1f76201b4d3dd06f56","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160224.tgz"},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160224.tgz_1456297561918_0.6679575839079916"},"directories":{}},"1.9.0-dev.20160225":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160225","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e2c95551b348b10bed7d42fdaff857143e631a0d","_id":"typescript@1.9.0-dev.20160225","_shasum":"924724117a1604dcad2899cff3c7018783c1d044","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"924724117a1604dcad2899cff3c7018783c1d044","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160225.tgz"},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160225.tgz_1456383958987_0.5908095738850534"},"directories":{}},"1.9.0-dev.20160226":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160226","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e2c95551b348b10bed7d42fdaff857143e631a0d","_id":"typescript@1.9.0-dev.20160226","_shasum":"26eb40a2a6b1c57fc359dc059624da7432d3992e","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"26eb40a2a6b1c57fc359dc059624da7432d3992e","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160226.tgz"},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160226.tgz_1456470359572_0.9021623290609568"},"directories":{}},"1.9.0-dev.20160227":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160227","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e2c95551b348b10bed7d42fdaff857143e631a0d","_id":"typescript@1.9.0-dev.20160227","_shasum":"98a5b72ddc29cd86614b0e59b422cf4e2dd2bd95","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"98a5b72ddc29cd86614b0e59b422cf4e2dd2bd95","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160227.tgz"},"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160227.tgz_1456556762515_0.19802480773068964"},"directories":{}},"1.9.0-dev.20160228":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160228","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e2c95551b348b10bed7d42fdaff857143e631a0d","_id":"typescript@1.9.0-dev.20160228","_shasum":"af70162002b8bea0602e49152f4ee1e36e00ced1","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"af70162002b8bea0602e49152f4ee1e36e00ced1","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160228.tgz"},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160228.tgz_1456643161066_0.06011231360025704"},"directories":{}},"1.9.0-dev.20160229":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160229","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e2c95551b348b10bed7d42fdaff857143e631a0d","_id":"typescript@1.9.0-dev.20160229","_shasum":"b8834b1b528a84a79ff91c661edbcb2228567a37","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"b8834b1b528a84a79ff91c661edbcb2228567a37","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160229.tgz"},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160229.tgz_1456729568054_0.8636588684748858"},"directories":{}},"1.9.0-dev.20160301":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160301","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e2c95551b348b10bed7d42fdaff857143e631a0d","_id":"typescript@1.9.0-dev.20160301","_shasum":"b80a86e10048ce442a86ce4bb1229e7388352619","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"b80a86e10048ce442a86ce4bb1229e7388352619","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160301.tgz"},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160301.tgz_1456815970858_0.07489930256269872"},"directories":{}},"1.8.5":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.5","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"2.3.4","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"dc4cd52a9a09bd4eee1fbebde98b41f2c503b335","_id":"typescript@1.8.5","_shasum":"3a985c107e329573c74ef068aa04470501cd07a3","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"3a985c107e329573c74ef068aa04470501cd07a3","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.5.tgz"},"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/typescript-1.8.5.tgz_1456873558742_0.867746451869607"},"directories":{}},"1.8.6":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.6","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"2.3.4","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"dc4cd52a9a09bd4eee1fbebde98b41f2c503b335","_id":"typescript@1.8.6","_shasum":"e68ff57682180a263ab3a41009fd792fd4ae5ba5","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e68ff57682180a263ab3a41009fd792fd4ae5ba5","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.6.tgz"},"_npmOperationalInternal":{"host":"packages-11-east.internal.npmjs.com","tmp":"tmp/typescript-1.8.6.tgz_1456881187432_0.06032153149135411"},"directories":{}},"1.8.7":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.7","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"2.3.4","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c9cf5f9cc2a781c9bdb00206d9a1038b53be6bda","_id":"typescript@1.8.7","_shasum":"35e3838de31c91cfe1d8c20e0e5785d386938a49","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"35e3838de31c91cfe1d8c20e0e5785d386938a49","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.7.tgz"},"_npmOperationalInternal":{"host":"packages-11-east.internal.npmjs.com","tmp":"tmp/typescript-1.8.7.tgz_1456882108211_0.4195348753128201"},"directories":{}},"1.9.0-dev.20160302":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160302","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e2c95551b348b10bed7d42fdaff857143e631a0d","_id":"typescript@1.9.0-dev.20160302","_shasum":"a0dc43ef30c4be8560e9635ff0ad392aca179b0c","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a0dc43ef30c4be8560e9635ff0ad392aca179b0c","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160302.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160302.tgz_1456902377274_0.24457713356241584"},"directories":{}},"1.9.0-dev.20160302.1":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160302.1","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"de47fcc113806e09df7c521edf500c6ab786459c","_id":"typescript@1.9.0-dev.20160302.1","_shasum":"f29aec19d2dec5ff52d387454762b7eafac50da1","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f29aec19d2dec5ff52d387454762b7eafac50da1","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160302.1.tgz"},"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160302.1.tgz_1456954470253_0.6838582698255777"},"directories":{}},"1.9.0-dev.20160303":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160303","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"0f6dbd02506eb61f18e7317693b1598bcf294a24","_id":"typescript@1.9.0-dev.20160303","_shasum":"776b4b2327777d518bd3915c10f0945c838c84c1","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"776b4b2327777d518bd3915c10f0945c838c84c1","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160303.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160303.tgz_1456988771804_0.688777522649616"},"directories":{}},"1.9.0-dev.20160304":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160304","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"311f8dd7d31c56ba962c73429d3007e03c2c113d","_id":"typescript@1.9.0-dev.20160304","_shasum":"8502bf04a90e1de5f4a7b3f5dcf154abcb938e2e","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8502bf04a90e1de5f4a7b3f5dcf154abcb938e2e","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160304.tgz"},"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160304.tgz_1457075164560_0.5056934119202197"},"directories":{}},"1.9.0-dev.20160305":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160305","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a5354608fcafd986dcede6aa9832431a23cd3cdf","_id":"typescript@1.9.0-dev.20160305","_shasum":"3dfb4ade56cfb32645b42158b9d2372a13318136","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"3dfb4ade56cfb32645b42158b9d2372a13318136","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160305.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160305.tgz_1457161570402_0.30450342409312725"},"directories":{}},"1.9.0-dev.20160306":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160306","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a5354608fcafd986dcede6aa9832431a23cd3cdf","_id":"typescript@1.9.0-dev.20160306","_shasum":"2433161eab5d4be09a02103dc3d4d5712d837f4e","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"2433161eab5d4be09a02103dc3d4d5712d837f4e","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160306.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160306.tgz_1457247981217_0.029852013802155852"},"directories":{}},"1.9.0-dev.20160307":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160307","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a5354608fcafd986dcede6aa9832431a23cd3cdf","_id":"typescript@1.9.0-dev.20160307","_shasum":"5eb1b189f3ad6aba1ac53b57594173a9595aa2e0","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5eb1b189f3ad6aba1ac53b57594173a9595aa2e0","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160307.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160307.tgz_1457334376969_0.07311495346948504"},"directories":{}},"1.9.0-dev.20160308":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160308","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"01c329c05ed52bd13ff1ba48bc673c145ebc9a8f","_id":"typescript@1.9.0-dev.20160308","_shasum":"17a9bd1f008f4683b43c5a57bc5f8a2bc09ade60","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"17a9bd1f008f4683b43c5a57bc5f8a2bc09ade60","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160308.tgz"},"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160308.tgz_1457420777849_0.6702823534142226"},"directories":{}},"1.9.0-dev.20160309":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160309","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"cc57ae0205e1c69567509c1d81c41d57235286d1","_id":"typescript@1.9.0-dev.20160309","_shasum":"5aff7d8dbacf9dde568615765802fe2af2ac294a","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5aff7d8dbacf9dde568615765802fe2af2ac294a","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160309.tgz"},"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160309.tgz_1457507173755_0.24544133385643363"},"directories":{}},"1.9.0-dev.20160310":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160310","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"f06423bffc705488f0f6c14ea70b8135a2421e34","_id":"typescript@1.9.0-dev.20160310","_shasum":"9e83c31cd1e7ea68019508d974ba7788594ede3e","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"9e83c31cd1e7ea68019508d974ba7788594ede3e","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160310.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160310.tgz_1457593580951_0.5331563816871494"},"directories":{}},"1.9.0-dev.20160311":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160311","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a75a02cc7b206fe4643d518d9903e036d8c172ae","_id":"typescript@1.9.0-dev.20160311","_shasum":"6a4069a8198b85fc551ac9d0459f4ed9b9ae6755","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"6a4069a8198b85fc551ac9d0459f4ed9b9ae6755","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160311.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160311.tgz_1457679985408_0.9390316719654948"},"directories":{}},"1.9.0-dev.20160312":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160312","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a75a02cc7b206fe4643d518d9903e036d8c172ae","_id":"typescript@1.9.0-dev.20160312","_shasum":"19ce36a1747641bf011ac281699df6637ff4087b","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"19ce36a1747641bf011ac281699df6637ff4087b","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160312.tgz"},"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160312.tgz_1457766393541_0.5865376011934131"},"directories":{}},"1.9.0-dev.20160313":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160313","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"74e498de03a045c36665a578a93cebde7bacd787","_id":"typescript@1.9.0-dev.20160313","_shasum":"07d637213e8f4ceb3225f1aeabaf949a69d539e1","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"07d637213e8f4ceb3225f1aeabaf949a69d539e1","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160313.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160313.tgz_1457852781074_0.6428778232075274"},"directories":{}},"1.9.0-dev.20160315":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160315","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"9f6f871e0128697105cde572f476031568df86cf","_id":"typescript@1.9.0-dev.20160315","_shasum":"421186197ba8690f360c5514f291a41b44e066e1","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"421186197ba8690f360c5514f291a41b44e066e1","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160315.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160315.tgz_1458013502192_0.6463880718220025"},"directories":{}},"1.9.0-dev.20160316":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160316","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"1156141b5e8d577451f03f36832448e6cac34459","_id":"typescript@1.9.0-dev.20160316","_shasum":"0c87fc702dd178a6f685f6c93dd69230dc73fdc5","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0c87fc702dd178a6f685f6c93dd69230dc73fdc5","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160316.tgz"},"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160316.tgz_1458108484363_0.450467805378139"},"directories":{}},"1.8.9":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.9","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":"https://github.com/Microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"engines":{"node":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"2.3.4","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"9ef75534e0fd5f92bef86b520dff768c11a2df4d","_id":"typescript@1.8.9","_shasum":"b3b3a74059fd31cbd3ecad95d62465939e7ed5fa","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"b3b3a74059fd31cbd3ecad95d62465939e7ed5fa","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.9.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.8.9.tgz_1458169371557_0.7292261146940291"},"directories":{}},"1.9.0-dev.20160317":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160317","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"b5f418ffcc79a5b724239701d73b1812c09af2d2","_id":"typescript@1.9.0-dev.20160317","_shasum":"e962b0013a312a10571a2f7d3dc4f40fdb1f5417","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e962b0013a312a10571a2f7d3dc4f40fdb1f5417","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160317.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160317.tgz_1458194774697_0.21504958672448993"},"directories":{}},"1.9.0-dev.20160318":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160318","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"279fec7a7d62407711ce57dc3e194df3b9da7d85","_id":"typescript@1.9.0-dev.20160318","_shasum":"202201fe08c28430ab9854f6b947e55d5fa596b9","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"202201fe08c28430ab9854f6b947e55d5fa596b9","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160318.tgz"},"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160318.tgz_1458281194875_0.7512446625623852"},"directories":{}},"1.9.0-dev.20160319":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160319","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"32178acdfe172354c1cac131c303ead7831c9334","_id":"typescript@1.9.0-dev.20160319","_shasum":"d2ea94b65287f29b58cb587cd178b1a6379ecb47","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d2ea94b65287f29b58cb587cd178b1a6379ecb47","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160319.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160319.tgz_1458367584325_0.18974966928362846"},"directories":{}},"1.9.0-dev.20160320":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160320","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"32178acdfe172354c1cac131c303ead7831c9334","_id":"typescript@1.9.0-dev.20160320","_shasum":"7ce83c826608496d8381d1949097a2d1547c0b58","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"7ce83c826608496d8381d1949097a2d1547c0b58","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160320.tgz"},"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160320.tgz_1458453972842_0.4057519566267729"},"directories":{}},"1.9.0-dev.20160321":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160321","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"32178acdfe172354c1cac131c303ead7831c9334","_id":"typescript@1.9.0-dev.20160321","_shasum":"80ef26d666998ebc5af75bdc5dbc6f820f46ea79","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"80ef26d666998ebc5af75bdc5dbc6f820f46ea79","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160321.tgz"},"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160321.tgz_1458540385260_0.4587331262882799"},"directories":{}},"1.9.0-dev.20160322":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160322","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"3853bb86d0f26e150666ab736092824eb781babc","_id":"typescript@1.9.0-dev.20160322","_shasum":"753b6a161032fbca00e108e51a37f4393d81a32f","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"753b6a161032fbca00e108e51a37f4393d81a32f","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160322.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160322.tgz_1458626778766_0.22957354900427163"},"directories":{}},"1.9.0-dev.20160323":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160323","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"9094e01e75d90c0d96796209bbbf1300eec61271","_id":"typescript@1.9.0-dev.20160323","_shasum":"73fc33417b0de9fe670582090b4ba8c9ddf576c6","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"73fc33417b0de9fe670582090b4ba8c9ddf576c6","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160323.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160323.tgz_1458713179917_0.9914855759125203"},"directories":{}},"1.9.0-dev.20160324":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160324","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"730f18955dc17068be33691f0fb0e0285ebbf9f5","_id":"typescript@1.9.0-dev.20160324","_shasum":"b2bd8ee93267a18ccf3165b6a3127ac97d9dd1c0","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"b2bd8ee93267a18ccf3165b6a3127ac97d9dd1c0","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160324.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160324.tgz_1458799583843_0.8971534639131278"},"directories":{}},"1.9.0-dev.20160325":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160325","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6cc1b174fb6865f9558002d582a675127a4005ca","_id":"typescript@1.9.0-dev.20160325","_shasum":"5a97256adff928e4bc9cae4940a51b01d09b933a","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5a97256adff928e4bc9cae4940a51b01d09b933a","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160325.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160325.tgz_1458885982883_0.17193096573464572"},"directories":{}},"1.9.0-dev.20160326":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160326","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"8dc3b2eff0671fcc1b046d80de2c8991c920a65e","_id":"typescript@1.9.0-dev.20160326","_shasum":"3d0ecf975c85686d5bbc81464ba3ca5456d5eb61","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"3d0ecf975c85686d5bbc81464ba3ca5456d5eb61","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160326.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160326.tgz_1458972386357_0.5337059921585023"},"directories":{}},"1.9.0-dev.20160327":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160327","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"89350b35f040ce120db2e5a08db190bd3e9741fe","_id":"typescript@1.9.0-dev.20160327","_shasum":"fd5cd642bef9178ad44c1e2704c043cc2c38457c","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"fd5cd642bef9178ad44c1e2704c043cc2c38457c","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160327.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160327.tgz_1459058781064_0.05373280239291489"},"directories":{}},"1.9.0-dev.20160328":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160328","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"89350b35f040ce120db2e5a08db190bd3e9741fe","_id":"typescript@1.9.0-dev.20160328","_shasum":"ddde82718701d9997021e88cac6a9ddb78438de0","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ddde82718701d9997021e88cac6a9ddb78438de0","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160328.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160328.tgz_1459145251419_0.5560931398067623"},"directories":{}},"1.9.0-dev.20160329":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160329","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"25f8ef336c56e76f57e7303197186c6a76e3fd42","_id":"typescript@1.9.0-dev.20160329","_shasum":"ef363c2db2165cfa989de035a12a4b7e5ef610b5","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ef363c2db2165cfa989de035a12a4b7e5ef610b5","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160329.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160329.tgz_1459231583738_0.6694845447782427"},"directories":{}},"1.9.0-dev.20160330":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160330","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"0556b15690d07cd9fdbd0ed40294c4e44b82a44a","_id":"typescript@1.9.0-dev.20160330","_shasum":"cab4feefe6bf90b40876e080311db47cbf75596e","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"cab4feefe6bf90b40876e080311db47cbf75596e","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160330.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160330.tgz_1459317983917_0.07969942642375827"},"directories":{}},"1.9.0-dev.20160331":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160331","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"68bdbe04e73fc4eb66d744a1a89bbd3baf162a87","_id":"typescript@1.9.0-dev.20160331","_shasum":"384895ed8cd10acaeeca05fc56b998f3fc5a5223","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"384895ed8cd10acaeeca05fc56b998f3fc5a5223","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160331.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160331.tgz_1459404522625_0.5131860044784844"},"directories":{}},"1.9.0-dev.20160401":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160401","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"68bdbe04e73fc4eb66d744a1a89bbd3baf162a87","_id":"typescript@1.9.0-dev.20160401","_shasum":"acc3b4c112d2ac8c6acf930fb5da2d7e4c1860ff","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"acc3b4c112d2ac8c6acf930fb5da2d7e4c1860ff","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160401.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160401.tgz_1459490815932_0.7359500741586089"},"directories":{}},"1.9.0-dev.20160402":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160402","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"68bdbe04e73fc4eb66d744a1a89bbd3baf162a87","_id":"typescript@1.9.0-dev.20160402","_shasum":"207b08676355401e0ad65640655a08c5cf80b721","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"207b08676355401e0ad65640655a08c5cf80b721","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160402.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160402.tgz_1459577208276_0.7721319389529526"},"directories":{}},"1.9.0-dev.20160403":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160403","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"68bdbe04e73fc4eb66d744a1a89bbd3baf162a87","_id":"typescript@1.9.0-dev.20160403","_shasum":"a2bbb6312bc0c4d0a9827772bdfe0f008727d419","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a2bbb6312bc0c4d0a9827772bdfe0f008727d419","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160403.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160403.tgz_1459663603517_0.6288528817240149"},"directories":{}},"1.9.0-dev.20160404":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160404","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"68bdbe04e73fc4eb66d744a1a89bbd3baf162a87","_id":"typescript@1.9.0-dev.20160404","_shasum":"0e7ad7886a1af966ab42af9c3fb1fef0e269781c","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0e7ad7886a1af966ab42af9c3fb1fef0e269781c","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160404.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160404.tgz_1459749996164_0.5945021682418883"},"directories":{}},"1.9.0-dev.20160405":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160405","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"11887ccc29c8c4a087ad8b9929b37307d16e13ab","_id":"typescript@1.9.0-dev.20160405","_shasum":"72db1600a5b884c528cc389ecb15b6d3cbfd35c5","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"72db1600a5b884c528cc389ecb15b6d3cbfd35c5","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160405.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160405.tgz_1459836528239_0.7472022236324847"},"directories":{}},"1.9.0-dev.20160406":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160406","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"65fdfd214c5594efc7700b85b5f83fce714a5e2a","_id":"typescript@1.9.0-dev.20160406","_shasum":"ed53dbc66f3ee8ea310501fa1c97afef7ae90b3f","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ed53dbc66f3ee8ea310501fa1c97afef7ae90b3f","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160406.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160406.tgz_1459922819856_0.5366591047495604"},"directories":{}},"1.9.0-dev.20160407":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160407","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"3acff6def62aee4e398687b4356b7c18c28fcd92","_id":"typescript@1.9.0-dev.20160407","_shasum":"8f7076ec834cda5d585b97bec42eafff14fc7cec","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8f7076ec834cda5d585b97bec42eafff14fc7cec","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160407.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160407.tgz_1460009328830_0.541105451527983"},"directories":{}},"1.9.0-dev.20160408":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160408","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"58efc2ee05c5053e69fdcee5bfc8234b598b32a3","_id":"typescript@1.9.0-dev.20160408","_shasum":"0fab58c2fa44bd7562c9b410a495b29acfce4689","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0fab58c2fa44bd7562c9b410a495b29acfce4689","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160408.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160408.tgz_1460095708891_0.8075578715652227"},"directories":{}},"1.9.0-dev.20160409":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160409","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ac6224d600ceeaca02dad0890b776e004d462e8b","_id":"typescript@1.9.0-dev.20160409","_shasum":"8c620b87bf8887d76738b859d219f047f7b2e8f5","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8c620b87bf8887d76738b859d219f047f7b2e8f5","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160409.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160409.tgz_1460182111990_0.059267388889566064"},"directories":{}},"1.9.0-dev.20160411":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160411","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"1.9.0-dev.20160408","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d280b1b7bc9f71491619fa61ee3fa99b54b96b26","_id":"typescript@1.9.0-dev.20160411","_shasum":"e44cf2ef6808d571db70af37f95ef10e43b9f259","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e44cf2ef6808d571db70af37f95ef10e43b9f259","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160411.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160411.tgz_1460395767996_0.1391923485789448"},"directories":{}},"1.9.0-dev.20160412":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160412","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d280b1b7bc9f71491619fa61ee3fa99b54b96b26","_id":"typescript@1.9.0-dev.20160412","_shasum":"c51a916638690883c65614c6c23c885673615b23","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"c51a916638690883c65614c6c23c885673615b23","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160412.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160412.tgz_1460441209759_0.5100526863243431"},"directories":{}},"1.8.10":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.8.10","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"2.3.4","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"794c57478ec2a44ee15fb3e245a4c5d2d1612375","_id":"typescript@1.8.10","_shasum":"b475d6e0dff0bf50f296e5ca6ef9fbb5c7320f1e","_from":".","_npmVersion":"2.14.2","_nodeVersion":"5.9.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"b475d6e0dff0bf50f296e5ca6ef9fbb5c7320f1e","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.8.10.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.8.10.tgz_1460493736776_0.9304528103675693"},"directories":{}},"1.9.0-dev.20160413":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160413","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d280b1b7bc9f71491619fa61ee3fa99b54b96b26","_id":"typescript@1.9.0-dev.20160413","_shasum":"229220b1b49f8d49806237e4b4191f34a8a82010","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"229220b1b49f8d49806237e4b4191f34a8a82010","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160413.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160413.tgz_1460527612365_0.5787558434531093"},"directories":{}},"1.9.0-dev.20160414":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160414","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d280b1b7bc9f71491619fa61ee3fa99b54b96b26","_id":"typescript@1.9.0-dev.20160414","_shasum":"cbbdb44e7a96d1442e9eaeab62ac7a94384f43d8","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"cbbdb44e7a96d1442e9eaeab62ac7a94384f43d8","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160414.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160414.tgz_1460614033722_0.33345846668817103"},"directories":{}},"1.9.0-dev.20160415":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160415","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d280b1b7bc9f71491619fa61ee3fa99b54b96b26","_id":"typescript@1.9.0-dev.20160415","_shasum":"1dc503dd61b977a98992af4d1b8346d8ddad687a","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"1dc503dd61b977a98992af4d1b8346d8ddad687a","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160415.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160415.tgz_1460700417038_0.9935393556952477"},"directories":{}},"1.9.0-dev.20160416":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160416","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d280b1b7bc9f71491619fa61ee3fa99b54b96b26","_id":"typescript@1.9.0-dev.20160416","_shasum":"10d30c5fc4163ce976350b3b9c58e15f9f8afd23","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"10d30c5fc4163ce976350b3b9c58e15f9f8afd23","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160416.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160416.tgz_1460786813910_0.05212209839373827"},"directories":{}},"1.9.0-dev.20160417":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160417","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d280b1b7bc9f71491619fa61ee3fa99b54b96b26","_id":"typescript@1.9.0-dev.20160417","_shasum":"fb8ece2bc6698788c74ce44b804d1e80b9ef2d50","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"fb8ece2bc6698788c74ce44b804d1e80b9ef2d50","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160417.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160417.tgz_1460873218025_0.6502671642228961"},"directories":{}},"1.9.0-dev.20160418":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160418","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d280b1b7bc9f71491619fa61ee3fa99b54b96b26","_id":"typescript@1.9.0-dev.20160418","_shasum":"f3dd5803c3990594d947f946a395da87f5157799","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f3dd5803c3990594d947f946a395da87f5157799","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160418.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160418.tgz_1460959614463_0.7953340262174606"},"directories":{}},"1.9.0-dev.20160419":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160419","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d280b1b7bc9f71491619fa61ee3fa99b54b96b26","_id":"typescript@1.9.0-dev.20160419","_shasum":"0aa600013b22aa0bc376323fa8f7b9b41a827c00","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0aa600013b22aa0bc376323fa8f7b9b41a827c00","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160419.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160419.tgz_1461046020216_0.6218960657715797"},"directories":{}},"1.9.0-dev.20160420":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160420","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d280b1b7bc9f71491619fa61ee3fa99b54b96b26","_id":"typescript@1.9.0-dev.20160420","_shasum":"654e74639fae480ddfd8c90ea4ad4c6588ab5bda","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"654e74639fae480ddfd8c90ea4ad4c6588ab5bda","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160420.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160420.tgz_1461132418680_0.9160798492375761"},"directories":{}},"1.9.0-dev.20160421":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160421","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d280b1b7bc9f71491619fa61ee3fa99b54b96b26","_id":"typescript@1.9.0-dev.20160421","_shasum":"c5e2fc29823ad973feda0950d5dee0deabf3a3cf","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"c5e2fc29823ad973feda0950d5dee0deabf3a3cf","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160421.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160421.tgz_1461218924744_0.09192655375227332"},"directories":{}},"1.9.0-dev.20160422":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160422","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d280b1b7bc9f71491619fa61ee3fa99b54b96b26","_id":"typescript@1.9.0-dev.20160422","_shasum":"0d1cb660651fa5029019cd6491b5667215a47db2","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0d1cb660651fa5029019cd6491b5667215a47db2","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160422.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160422.tgz_1461305207804_0.2526260947342962"},"directories":{}},"1.9.0-dev.20160423":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160423","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d280b1b7bc9f71491619fa61ee3fa99b54b96b26","_id":"typescript@1.9.0-dev.20160423","_shasum":"99f26b6977769eda17722334c2551eae1ebb6565","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"99f26b6977769eda17722334c2551eae1ebb6565","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160423.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160423.tgz_1461391622289_0.9419101537205279"},"directories":{}},"1.9.0-dev.20160424":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160424","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d280b1b7bc9f71491619fa61ee3fa99b54b96b26","_id":"typescript@1.9.0-dev.20160424","_shasum":"9b91e6b74b106ff3ed397108472242b86cc72606","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"9b91e6b74b106ff3ed397108472242b86cc72606","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160424.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160424.tgz_1461478009410_0.9589254218153656"},"directories":{}},"1.9.0-dev.20160425":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160425","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d280b1b7bc9f71491619fa61ee3fa99b54b96b26","_id":"typescript@1.9.0-dev.20160425","_shasum":"fea561d6b5febd5b6eaafd72fbf91e4e66f18b40","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"fea561d6b5febd5b6eaafd72fbf91e4e66f18b40","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160425.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160425.tgz_1461564408038_0.04081986588425934"},"directories":{}},"1.9.0-dev.20160426":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160426","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"da0197527f1a3759c5c6efa699257cfb36a12420","_id":"typescript@1.9.0-dev.20160426","_shasum":"9bcbeeb247305885718a5320225ced4d0e203912","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"9bcbeeb247305885718a5320225ced4d0e203912","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160426.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160426.tgz_1461650812035_0.5928841661661863"},"directories":{}},"1.9.0-dev.20160427":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160427","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e00f573de4955022d184ce100123a78d75941525","_id":"typescript@1.9.0-dev.20160427","_shasum":"ab8d1a6189b27df917e70a0ab3069a3d45c05b07","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ab8d1a6189b27df917e70a0ab3069a3d45c05b07","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160427.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160427.tgz_1461780529953_0.39602549583651125"},"directories":{}},"1.9.0-dev.20160428":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160428","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"4ebf4880e5ba28b8f39d7a55dd26e330349e165e","_id":"typescript@1.9.0-dev.20160428","_shasum":"d9c6c5a532fbe18a9b3ffee297b1ade602d4a18e","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d9c6c5a532fbe18a9b3ffee297b1ade602d4a18e","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160428.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160428.tgz_1461863726233_0.22797652590088546"},"directories":{}},"1.9.0-dev.20160428-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160428-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"4ebf4880e5ba28b8f39d7a55dd26e330349e165e","_id":"typescript@1.9.0-dev.20160428-1.0","_shasum":"3580c328cb539d7a7e35b14838ac9b3dda5a36d1","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"3580c328cb539d7a7e35b14838ac9b3dda5a36d1","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160428-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160428-1.0.tgz_1461879631948_0.8235606146045029"},"directories":{}},"1.9.0-dev.20160429":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160429","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"91201211f438ff992ebc28ef94ab0bf4fe563930","_id":"typescript@1.9.0-dev.20160429","_shasum":"03d8ae75fa9811f449a8d3efcaa0e4ba4fa5ef94","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"03d8ae75fa9811f449a8d3efcaa0e4ba4fa5ef94","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160429.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160429.tgz_1461910068825_0.3978662225417793"},"directories":{}},"1.9.0-dev.20160430":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160430","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d1b60f8bfb6ff63521b36ff9cff024da2d544363","_id":"typescript@1.9.0-dev.20160430","_shasum":"3cf8c3e1eb66c8eb4ffcfadc22c24e6c149e34af","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"3cf8c3e1eb66c8eb4ffcfadc22c24e6c149e34af","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160430.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160430.tgz_1461996469658_0.4692409059498459"},"directories":{}},"1.9.0-dev.20160501":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160501","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"bc5b6dc19ca0c9d2391eb24ba035775dcecda7aa","_id":"typescript@1.9.0-dev.20160501","_shasum":"cd2d54f7f10cef7a4c531289eb80c13725117d3d","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"cd2d54f7f10cef7a4c531289eb80c13725117d3d","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160501.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160501.tgz_1462082864543_0.1551774051040411"},"directories":{}},"1.9.0-dev.20160502":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160502","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"10d09a739b1264e5b30fcdca826b4c79f12f8b3d","_id":"typescript@1.9.0-dev.20160502","_shasum":"7d56c329f4655bd5cf7f957e78dc45c64e6300b6","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"7d56c329f4655bd5cf7f957e78dc45c64e6300b6","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160502.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160502.tgz_1462169265627_0.5442298646084964"},"directories":{}},"1.9.0-dev.20160503":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160503","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2ff9c915a02f07a37a1f135d6e7765399e113f0f","_id":"typescript@1.9.0-dev.20160503","_shasum":"600898119e3301f26a184b9aba124d4ac9f427ff","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"600898119e3301f26a184b9aba124d4ac9f427ff","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160503.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160503.tgz_1462255676770_0.8820939129218459"},"directories":{}},"1.9.0-dev.20160504":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160504","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e9122a9f34079d865ea6bbacc5e0406d9d4c6b8f","_id":"typescript@1.9.0-dev.20160504","_shasum":"02aae60e2094556569a9117a89ae4a36b73c4a0a","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"02aae60e2094556569a9117a89ae4a36b73c4a0a","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160504.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160504.tgz_1462342059888_0.9334118121769279"},"directories":{}},"1.9.0-dev.20160505":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160505","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"674e84bd26854e835f783ab6411ecad353440e07","_id":"typescript@1.9.0-dev.20160505","_shasum":"24bcdfc86e448418c1eefcaa9950b657822cc536","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"24bcdfc86e448418c1eefcaa9950b657822cc536","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160505.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160505.tgz_1462428464409_0.8521364210173488"},"directories":{}},"1.9.0-dev.20160506":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160506","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"bc6d6ea49a855294eca44323c269ed13ada0ff05","_id":"typescript@1.9.0-dev.20160506","_shasum":"19f79b5e30512217f0d1fb989ed18ddaeecff7c7","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"19f79b5e30512217f0d1fb989ed18ddaeecff7c7","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160506.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160506.tgz_1462514872745_0.6224246406927705"},"directories":{}},"1.9.0-dev.20160507":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160507","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"955cc69c70c0ccb4030357e4e6808fff740503ee","_id":"typescript@1.9.0-dev.20160507","_shasum":"91610cad5e4f5112dce731ae36feca97445919f0","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"91610cad5e4f5112dce731ae36feca97445919f0","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160507.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160507.tgz_1462601283484_0.10752718057483435"},"directories":{}},"1.9.0-dev.20160508":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160508","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"72c19ec80603bb129f5bcd28e422263bdc59a67a","_id":"typescript@1.9.0-dev.20160508","_shasum":"c63e4ea69ee05ebb929202b67751b78d34f39485","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"c63e4ea69ee05ebb929202b67751b78d34f39485","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160508.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160508.tgz_1462687665522_0.5605683689936996"},"directories":{}},"1.9.0-dev.20160509":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160509","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"72c19ec80603bb129f5bcd28e422263bdc59a67a","_id":"typescript@1.9.0-dev.20160509","_shasum":"a42783c7ae63e6ab0356017f2e90a81669ff8af6","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a42783c7ae63e6ab0356017f2e90a81669ff8af6","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160509.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160509.tgz_1462774058200_0.2839383187238127"},"directories":{}},"1.9.0-dev.20160510":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160510","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"16fccf5d38457510e49c5e49af87b161083a46b0","_id":"typescript@1.9.0-dev.20160510","_shasum":"a692b160bf8b8028830b7d8ba6ccfcf9b2016af4","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a692b160bf8b8028830b7d8ba6ccfcf9b2016af4","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160510.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160510.tgz_1462860511997_0.8680063146166503"},"directories":{}},"1.9.0-dev.20160511":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160511","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"b68e93966a976f1609b78db023f379263081722f","_id":"typescript@1.9.0-dev.20160511","_shasum":"aa26c9646737bc2db5b62619d91c25336eabbf51","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"aa26c9646737bc2db5b62619d91c25336eabbf51","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160511.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160511.tgz_1462946872047_0.8531200606375933"},"directories":{}},"1.9.0-dev.20160512":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160512","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d8d5dafe1a701a0b9466e53637f0ff3c63d55835","_id":"typescript@1.9.0-dev.20160512","_shasum":"ae6260f63c8bf3103d40a1b2ab7392747ffdd4a9","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ae6260f63c8bf3103d40a1b2ab7392747ffdd4a9","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160512.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160512.tgz_1463033278560_0.7497424657922238"},"directories":{}},"1.9.0-dev.20160513":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160513","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"cf749307b9c5f100514964974382153fb5ddc172","_id":"typescript@1.9.0-dev.20160513","_shasum":"1e41c70e7ec2544bf11c9b2ffcf67054fb90aeef","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"1e41c70e7ec2544bf11c9b2ffcf67054fb90aeef","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160513.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160513.tgz_1463119672955_0.38495120662264526"},"directories":{}},"1.9.0-dev.20160514":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160514","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"cf749307b9c5f100514964974382153fb5ddc172","_id":"typescript@1.9.0-dev.20160514","_shasum":"6024bc10d8a953b271232ee3379d472cf0b1e206","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"6024bc10d8a953b271232ee3379d472cf0b1e206","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160514.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160514.tgz_1463206056860_0.8671938341576606"},"directories":{}},"1.9.0-dev.20160515":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160515","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"cf749307b9c5f100514964974382153fb5ddc172","_id":"typescript@1.9.0-dev.20160515","_shasum":"7cebafc17db5739a0b7e1bd2b0676356ddbe8015","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"7cebafc17db5739a0b7e1bd2b0676356ddbe8015","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160515.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160515.tgz_1463292466119_0.6810538019053638"},"directories":{}},"1.9.0-dev.20160516":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160516","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"cf749307b9c5f100514964974382153fb5ddc172","_id":"typescript@1.9.0-dev.20160516","_shasum":"0428e87817b8cccfa578f03a3801bb2cc95b6ebf","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0428e87817b8cccfa578f03a3801bb2cc95b6ebf","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160516.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160516.tgz_1463378869648_0.21358249825425446"},"directories":{}},"1.9.0-dev.20160517-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160517-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"3fb16f5930e32c9e59a52fe978678e9d3b195e76","_id":"typescript@1.9.0-dev.20160517-1.0","_shasum":"aedf47b5ef7eb3d995290a5a8e863c37de405635","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"aedf47b5ef7eb3d995290a5a8e863c37de405635","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160517-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160517-1.0.tgz_1463465264772_0.694688108516857"},"directories":{}},"1.9.0-dev.20160518-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160518-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c62b6cb6fc7d0b01696816e04dfb70f68d826541","_id":"typescript@1.9.0-dev.20160518-1.0","_shasum":"764c7fe54fccf976fbb42070d355cdd25fb8d97f","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"764c7fe54fccf976fbb42070d355cdd25fb8d97f","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160518-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160518-1.0.tgz_1463551664224_0.10587316239252687"},"directories":{}},"1.9.0-dev.20160519-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160519-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"9ffc7a9df91e488b120720306c8f4a85ed86ab7d","_id":"typescript@1.9.0-dev.20160519-1.0","_shasum":"8bc100161ada9e5ee77487ee05d5004e2253683f","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8bc100161ada9e5ee77487ee05d5004e2253683f","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160519-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160519-1.0.tgz_1463638111297_0.44213212723843753"},"directories":{}},"1.9.0-dev.20160520-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160520-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"f95f51fefcc3d169972e3f2e4275e6e97c105a81","_id":"typescript@1.9.0-dev.20160520-1.0","_shasum":"36f18a2e69c7d91fe7255d867b55f2f295cafe9a","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"36f18a2e69c7d91fe7255d867b55f2f295cafe9a","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160520-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160520-1.0.tgz_1463724469221_0.14544494962319732"},"directories":{}},"1.9.0-dev.20160521-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160521-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d69f57bc1db5e68cf7b2a253fe9d3c1f6e348fb8","_id":"typescript@1.9.0-dev.20160521-1.0","_shasum":"2dac650ba25dd48247c1acef041bd0cb233f3d0c","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"2dac650ba25dd48247c1acef041bd0cb233f3d0c","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160521-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160521-1.0.tgz_1463810866444_0.45348995574750006"},"directories":{}},"1.9.0-dev.20160522-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160522-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"3f9efa039aff8db77c791ddad2dc6c933151f963","_id":"typescript@1.9.0-dev.20160522-1.0","_shasum":"6e79581b1cc4ffdcd16d95b80e30464f7d370aa9","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"6e79581b1cc4ffdcd16d95b80e30464f7d370aa9","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160522-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160522-1.0.tgz_1463897250442_0.7497013963293284"},"directories":{}},"1.9.0-dev.20160523-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160523-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"3f9efa039aff8db77c791ddad2dc6c933151f963","_id":"typescript@1.9.0-dev.20160523-1.0","_shasum":"eb9fb14d437ea8def6083e1be6946c4c3d235465","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"eb9fb14d437ea8def6083e1be6946c4c3d235465","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160523-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160523-1.0.tgz_1463983642667_0.24825826566666365"},"directories":{}},"1.9.0-dev.20160524-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160524-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"27292e4292554a219ab3acd1e87935a4871f2979","_id":"typescript@1.9.0-dev.20160524-1.0","_shasum":"cd0e0433924456ae6214fae6f7b177407bb323e4","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"cd0e0433924456ae6214fae6f7b177407bb323e4","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160524-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160524-1.0.tgz_1464070110959_0.280155367217958"},"directories":{}},"1.9.0-dev.20160525-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160525-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"7173fa8d024d6a251d5b4f3c4a24b0b8adc4f12f","_id":"typescript@1.9.0-dev.20160525-1.0","_shasum":"36aeba8ea2b642bf278f747722789ab653dc1ec5","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"36aeba8ea2b642bf278f747722789ab653dc1ec5","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160525-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160525-1.0.tgz_1464156448928_0.2952012966852635"},"directories":{}},"1.9.0-dev.20160526-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160526-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6173696b257f7c2d9673917c51c3a7d07c05fbfc","_id":"typescript@1.9.0-dev.20160526-1.0","_shasum":"f5402223ee142848bc90aa819b8421b8c8ea96cb","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f5402223ee142848bc90aa819b8421b8c8ea96cb","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160526-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160526-1.0.tgz_1464242917310_0.45966357295401394"},"directories":{}},"1.9.0-dev.20160527-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160527-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"154729d40e255182da274dad7b7c383c3e8c9cfd","_id":"typescript@1.9.0-dev.20160527-1.0","_shasum":"b05887fb272acde401262d5972299e4cd7f6f27d","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"b05887fb272acde401262d5972299e4cd7f6f27d","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160527-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160527-1.0.tgz_1464329292247_0.18406790774315596"},"directories":{}},"1.9.0-dev.20160528-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160528-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e9de47f6a95c29cc0776c4ca402df804aa732879","_id":"typescript@1.9.0-dev.20160528-1.0","_shasum":"835ac1c4ad6fb36484c14d049dc60a5b1f61862b","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"835ac1c4ad6fb36484c14d049dc60a5b1f61862b","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160528-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160528-1.0.tgz_1464415682692_0.8020553400274366"},"directories":{}},"1.9.0-dev.20160529-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160529-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e9de47f6a95c29cc0776c4ca402df804aa732879","_id":"typescript@1.9.0-dev.20160529-1.0","_shasum":"8a843079b6c72dcbdc446f1339974b5bd922684a","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8a843079b6c72dcbdc446f1339974b5bd922684a","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160529-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160529-1.0.tgz_1464502084183_0.12294790963642299"},"directories":{}},"1.9.0-dev.20160530-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160530-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e9de47f6a95c29cc0776c4ca402df804aa732879","_id":"typescript@1.9.0-dev.20160530-1.0","_shasum":"d906c96e572b20e2d3d7ddd617f034b00da973c6","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d906c96e572b20e2d3d7ddd617f034b00da973c6","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160530-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160530-1.0.tgz_1464588463043_0.9400265559088439"},"directories":{}},"1.9.0-dev.20160531-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160531-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e9de47f6a95c29cc0776c4ca402df804aa732879","_id":"typescript@1.9.0-dev.20160531-1.0","_shasum":"0f5beb937622a0fd10b7d030a686aa0a9f34fb0f","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0f5beb937622a0fd10b7d030a686aa0a9f34fb0f","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160531-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160531-1.0.tgz_1464674872374_0.29905563429929316"},"directories":{}},"1.9.0-dev.20160601-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160601-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"166f399d176486a1247c54dcd6ad4a18e33c18f3","_id":"typescript@1.9.0-dev.20160601-1.0","_shasum":"41fd19ecd08ad31bc298473eea82b60dbd1f110c","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"41fd19ecd08ad31bc298473eea82b60dbd1f110c","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160601-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160601-1.0.tgz_1464761284684_0.6037666590418667"},"directories":{}},"1.9.0-dev.20160602-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160602-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"166f399d176486a1247c54dcd6ad4a18e33c18f3","_id":"typescript@1.9.0-dev.20160602-1.0","_shasum":"780f2a90b37e6ffa1394a714560c5e760d6bbc95","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"780f2a90b37e6ffa1394a714560c5e760d6bbc95","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160602-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160602-1.0.tgz_1464847696126_0.6565910340286791"},"directories":{}},"1.9.0-dev.20160603-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160603-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"3853555b49ccea3a5bba1163d983571ef25cf694","_id":"typescript@1.9.0-dev.20160603-1.0","_shasum":"4612e231e5802807c3af0338a2a4c7a1fe5f11e1","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4612e231e5802807c3af0338a2a4c7a1fe5f11e1","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160603-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160603-1.0.tgz_1464934094365_0.31391331111080945"},"directories":{}},"1.9.0-dev.20160604-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160604-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6dcd5877a072193830c18687228e742e62e1fd24","_id":"typescript@1.9.0-dev.20160604-1.0","_shasum":"900bb262c8e657854c2f52d7235610a95fd01e3a","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"900bb262c8e657854c2f52d7235610a95fd01e3a","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160604-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160604-1.0.tgz_1465020484312_0.9461174772586673"},"directories":{}},"1.9.0-dev.20160605-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160605-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6dcd5877a072193830c18687228e742e62e1fd24","_id":"typescript@1.9.0-dev.20160605-1.0","_shasum":"1b71a635c58f4daed601f153e6832c53b611a8b1","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"1b71a635c58f4daed601f153e6832c53b611a8b1","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160605-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160605-1.0.tgz_1465106892507_0.898524829884991"},"directories":{}},"1.9.0-dev.20160606-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160606-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6dcd5877a072193830c18687228e742e62e1fd24","_id":"typescript@1.9.0-dev.20160606-1.0","_shasum":"90e12c913882508c0438b1dfe862a4e96cd06b9a","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"90e12c913882508c0438b1dfe862a4e96cd06b9a","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160606-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160606-1.0.tgz_1465193290946_0.7177782678045332"},"directories":{}},"1.9.0-dev.20160607-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160607-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"52d8a78419b6ff27499274ade4a36ff3cfd058da","_id":"typescript@1.9.0-dev.20160607-1.0","_shasum":"df9c78d5706abb1dc51dd00a8012f7ebf3cfee23","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"df9c78d5706abb1dc51dd00a8012f7ebf3cfee23","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160607-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160607-1.0.tgz_1465279702182_0.8184833158738911"},"directories":{}},"1.9.0-dev.20160608-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160608-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"cdf4cded154b942d65bd3d645ee8d67adae4ecb6","_id":"typescript@1.9.0-dev.20160608-1.0","_shasum":"8771e06f5bd59107c731ba0ad9b4a6976209bbf2","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8771e06f5bd59107c731ba0ad9b4a6976209bbf2","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160608-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160608-1.0.tgz_1465366110815_0.4723525489680469"},"directories":{}},"1.9.0-dev.20160609-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160609-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"9e122909d4343e564617414dc7151213f1bf73d2","_id":"typescript@1.9.0-dev.20160609-1.0","_shasum":"8784329a17d72407881d39fc7d49ea1522e39c38","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8784329a17d72407881d39fc7d49ea1522e39c38","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160609-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160609-1.0.tgz_1465452477903_0.5440968133043498"},"directories":{}},"1.9.0-dev.20160610-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160610-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2b46656b4a0ff5528c6d6316823c183897ff2277","_id":"typescript@1.9.0-dev.20160610-1.0","_shasum":"768216dcc2528b9445b5cecaeb599b22ca8a3072","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"768216dcc2528b9445b5cecaeb599b22ca8a3072","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160610-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160610-1.0.tgz_1465538901967_0.9905812302604318"},"directories":{}},"1.9.0-dev.20160611-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160611-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"81d1ccfe87d8c872deaebe490d29ba6bb1a2fe88","_id":"typescript@1.9.0-dev.20160611-1.0","_shasum":"00e9fbae5e484049059b26f2042c13f0e324eed5","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"00e9fbae5e484049059b26f2042c13f0e324eed5","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160611-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160611-1.0.tgz_1465625305012_0.1377795049920678"},"directories":{}},"1.9.0-dev.20160612-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160612-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"81d1ccfe87d8c872deaebe490d29ba6bb1a2fe88","_id":"typescript@1.9.0-dev.20160612-1.0","_shasum":"2ae212f98e60c74bbfca27e48cd2caf50cfcba2c","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"2ae212f98e60c74bbfca27e48cd2caf50cfcba2c","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160612-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160612-1.0.tgz_1465711707201_0.5763158404733986"},"directories":{}},"1.9.0-dev.20160613-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160613-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"81d1ccfe87d8c872deaebe490d29ba6bb1a2fe88","_id":"typescript@1.9.0-dev.20160613-1.0","_shasum":"49daca27d5aaf2d2606f2d23ae95fb8bb38378ff","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"49daca27d5aaf2d2606f2d23ae95fb8bb38378ff","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160613-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160613-1.0.tgz_1465798065856_0.7256635501980782"},"directories":{}},"1.9.0-dev.20160614-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160614-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"f9923efd0981cbff405c03500a397244f0d3f8b8","_id":"typescript@1.9.0-dev.20160614-1.0","_shasum":"18c07473113ba76824928f8e5d3d0654c880c247","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"18c07473113ba76824928f8e5d3d0654c880c247","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160614-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160614-1.0.tgz_1465884478592_0.47812855150550604"},"directories":{}},"1.9.0-dev.20160615-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160615-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"38c89af6b2d8ec050607e9cf370d35d0e42ea50d","_id":"typescript@1.9.0-dev.20160615-1.0","_shasum":"23374ae3b9b58e87467d1493631a49b31a1a48ae","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"23374ae3b9b58e87467d1493631a49b31a1a48ae","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160615-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160615-1.0.tgz_1465970888466_0.45856522070243955"},"directories":{}},"1.9.0-dev.20160616-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160616-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"95ae809faafb7311b33b7ece737bb1474e6e479d","_id":"typescript@1.9.0-dev.20160616-1.0","_shasum":"4ebf5ba11e4035869cb9894eabeba4d8982880ca","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4ebf5ba11e4035869cb9894eabeba4d8982880ca","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160616-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160616-1.0.tgz_1466057280886_0.7519359402358532"},"directories":{}},"1.9.0-dev.20160617-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160617-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"0e6f8eb2bca776acdb11a6cbf45b37b2d195650a","_id":"typescript@1.9.0-dev.20160617-1.0","_shasum":"878301d8b4e346d194129f793a9dd1eff18cfcef","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"878301d8b4e346d194129f793a9dd1eff18cfcef","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160617-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160617-1.0.tgz_1466143718910_0.10595914931036532"},"directories":{}},"1.9.0-dev.20160618-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160618-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"3fe546b9eaac9afff44251d2434c21a47c41cd99","_id":"typescript@1.9.0-dev.20160618-1.0","_shasum":"c24b81721693f0673def37650f9ffaf1903631fe","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"c24b81721693f0673def37650f9ffaf1903631fe","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160618-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160618-1.0.tgz_1466230081176_0.1526259151287377"},"directories":{}},"1.9.0-dev.20160619-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160619-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ba78d1e35c02f66bcaaec07c56e7b6c754846823","_id":"typescript@1.9.0-dev.20160619-1.0","_shasum":"d9beb66e8eb7ba4808500ca7bc77e1daddd648bf","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d9beb66e8eb7ba4808500ca7bc77e1daddd648bf","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160619-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160619-1.0.tgz_1466316494852_0.11166878417134285"},"directories":{}},"1.9.0-dev.20160620-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160620-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ba78d1e35c02f66bcaaec07c56e7b6c754846823","_id":"typescript@1.9.0-dev.20160620-1.0","_shasum":"59e112d2a23399114f820a5e5bd3e1a4837f0feb","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"59e112d2a23399114f820a5e5bd3e1a4837f0feb","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160620-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160620-1.0.tgz_1466402890838_0.15002755378372967"},"directories":{}},"1.9.0-dev.20160622-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160622-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"12bfb7e98751d7f8b2bb12aa51273aa8a4fbd59e","_id":"typescript@1.9.0-dev.20160622-1.0","_shasum":"d3a2e3100cd43cc4b8c5fd618031c146aca35523","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d3a2e3100cd43cc4b8c5fd618031c146aca35523","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160622-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160622-1.0.tgz_1466575666395_0.5454677157104015"},"directories":{}},"1.9.0-dev.20160623-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160623-1.0","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":">=0.8.0"},"devDependencies":{"jake":"latest","mocha":"latest","chai":"latest","browserify":"latest","istanbul":"latest","mocha-fivemat-progress-reporter":"latest","tslint":"next","typescript":"next","tsd":"latest"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"9134ed3b7dbe5181a0398c2aea40d30397f2b39c","_id":"typescript@1.9.0-dev.20160623-1.0","_shasum":"86448d296743fdd7e641c93467cdb56ee78ad42a","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"86448d296743fdd7e641c93467cdb56ee78ad42a","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160623-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160623-1.0.tgz_1466662076622_0.9902041908353567"},"directories":{}},"1.9.0-dev.20160624-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160624-1.0","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"69e2f0e4590965ab3f971fee25d6752f726c01ff","_id":"typescript@1.9.0-dev.20160624-1.0","_shasum":"5d3f5fcf690f44b9d652e00ee9480db1e4e2ecd8","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5d3f5fcf690f44b9d652e00ee9480db1e4e2ecd8","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160624-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160624-1.0.tgz_1466748508170_0.39683223562315106"},"directories":{}},"1.9.0-dev.20160625-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160625-1.0","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"be2ca35b004f2079464fdca454c08a5019020260","_id":"typescript@1.9.0-dev.20160625-1.0","_shasum":"5fd9d96ea24d0fdd1dffe6f1e275970392d13be5","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5fd9d96ea24d0fdd1dffe6f1e275970392d13be5","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160625-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160625-1.0.tgz_1466834910717_0.11769267776980996"},"directories":{}},"1.9.0-dev.20160626-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160626-1.0","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"be2ca35b004f2079464fdca454c08a5019020260","_id":"typescript@1.9.0-dev.20160626-1.0","_shasum":"9947ac4fd4017ee34454e8d2b8c281c7f55e44d7","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"9947ac4fd4017ee34454e8d2b8c281c7f55e44d7","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160626-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160626-1.0.tgz_1466921317329_0.36675865505822003"},"directories":{}},"1.9.0-dev.20160627-1.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"1.9.0-dev.20160627-1.0","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"be2ca35b004f2079464fdca454c08a5019020260","_id":"typescript@1.9.0-dev.20160627-1.0","_shasum":"a868521c774b7f76ad468cfcd5d899ede9b72859","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a868521c774b7f76ad468cfcd5d899ede9b72859","tarball":"https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160627-1.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-1.9.0-dev.20160627-1.0.tgz_1467007710798_0.6816966694314033"},"directories":{}},"2.0.0-dev.20160628":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.0.0-dev.20160628","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6be7d9caa60c261f1be6a61be9e6851e835b9d61","_id":"typescript@2.0.0-dev.20160628","_shasum":"d906f5c0cee84578913793ac03ba91c655e380d7","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d906f5c0cee84578913793ac03ba91c655e380d7","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.0.0-dev.20160628.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.0.0-dev.20160628.tgz_1467094120337_0.7582901283167303"},"directories":{}},"2.0.0-dev.20160629":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.0.0-dev.20160629","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"47bee47c7553956988c7188271733f91bc4f7541","_id":"typescript@2.0.0-dev.20160629","_shasum":"98d431ed98a401735eae0e998d726c11dcfa3450","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"98d431ed98a401735eae0e998d726c11dcfa3450","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.0.0-dev.20160629.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.0.0-dev.20160629.tgz_1467180525137_0.15340073965489864"},"directories":{}},"2.0.0-dev.20160630":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.0.0-dev.20160630","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"7b77f6b3fd88f012a2b1f93cd49505ac5cef1099","_id":"typescript@2.0.0-dev.20160630","_shasum":"4b9f1ca02eca2f6e4380b5100059cb216b5fe9b0","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4b9f1ca02eca2f6e4380b5100059cb216b5fe9b0","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.0.0-dev.20160630.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.0.0-dev.20160630.tgz_1467266918023_0.9832048646640033"},"directories":{}},"2.0.0-dev.20160701":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.0.0-dev.20160701","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"613e2d33b6bebc96ab9fc3a111d61b2a30015490","_id":"typescript@2.0.0-dev.20160701","_shasum":"d42f8b45ab2e569bec8e656c29fa92efaf202d7d","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d42f8b45ab2e569bec8e656c29fa92efaf202d7d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.0.0-dev.20160701.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.0.0-dev.20160701.tgz_1467353346141_0.8765618782490492"},"directories":{}},"2.0.0-dev.20160702":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.0.0-dev.20160702","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"1d03be0f90827b59ce7dbd20a45d125a0a387527","_id":"typescript@2.0.0-dev.20160702","_shasum":"83f1dd272907306dba804a12e769fbde9c749529","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"83f1dd272907306dba804a12e769fbde9c749529","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.0.0-dev.20160702.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.0.0-dev.20160702.tgz_1467439724167_0.4842175703961402"},"directories":{}},"2.0.0-dev.20160703":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.0.0-dev.20160703","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"19c141aefed7920291a11398daca4d076f862e67","_id":"typescript@2.0.0-dev.20160703","_shasum":"79cd90d5f63f4a6ee83524c3fc1f057660e170d8","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"79cd90d5f63f4a6ee83524c3fc1f057660e170d8","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.0.0-dev.20160703.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.0.0-dev.20160703.tgz_1467526112554_0.3352405352052301"},"directories":{}},"2.0.0-dev.20160704":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.0.0-dev.20160704","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c2730ce659733b89b8599440837a3046ca734a75","_id":"typescript@2.0.0-dev.20160704","_shasum":"4d588d534d530d7faecca2d5e696f7b5f4d61785","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4d588d534d530d7faecca2d5e696f7b5f4d61785","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.0.0-dev.20160704.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.0.0-dev.20160704.tgz_1467612514952_0.47343565733172"},"directories":{}},"2.0.0-dev.20160705":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.0.0-dev.20160705","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c2730ce659733b89b8599440837a3046ca734a75","_id":"typescript@2.0.0-dev.20160705","_shasum":"43d9efcdee4fd34a4c49a360fa5a430125190f66","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"43d9efcdee4fd34a4c49a360fa5a430125190f66","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.0.0-dev.20160705.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.0.0-dev.20160705.tgz_1467698926437_0.838360367808491"},"directories":{}},"2.0.0-dev.20160706":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.0.0-dev.20160706","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"29985f33b7cabf9f549721c368ba2118d147779f","_id":"typescript@2.0.0-dev.20160706","_shasum":"aee3aaed4895c52beede6b34c08d8c91a0a0e0d0","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"aee3aaed4895c52beede6b34c08d8c91a0a0e0d0","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.0.0-dev.20160706.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.0.0-dev.20160706.tgz_1467785381557_0.09087051870301366"},"directories":{}},"2.0.0-dev.20160707":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.0.0-dev.20160707","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a03941237334f6757c932254d58f1833fa1b004a","_id":"typescript@2.0.0-dev.20160707","_shasum":"e2ad33dfcb1c6502d5a151154a51cf9f85e09f1b","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e2ad33dfcb1c6502d5a151154a51cf9f85e09f1b","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.0.0-dev.20160707.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.0.0-dev.20160707.tgz_1467871761621_0.6881850478239357"},"directories":{}},"2.0.0-dev.20160711":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.0.0-dev.20160711","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"37eac5fb7f9d2484cfef3ae344d91aa622b9aa86","_id":"typescript@2.0.0-dev.20160711","_shasum":"509628fb1b27a9cc2412f0d03a0554bc19f7b5fb","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"509628fb1b27a9cc2412f0d03a0554bc19f7b5fb","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.0.0-dev.20160711.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.0.0-dev.20160711.tgz_1468248247690_0.022030749125406146"},"directories":{}},"2.0.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.0.0","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"87e95069fc6a5a46804f7328a8ef0d180e17734a","_id":"typescript@2.0.0","_shasum":"14795f9c39e06022597a2a09eb733adabef9b08c","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"14795f9c39e06022597a2a09eb733adabef9b08c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.0.0.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.0.0.tgz_1468253608465_0.3713174283038825"},"directories":{}},"2.1.0-dev.20160712":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160712","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"48ab0ce07fa72bb5bd66a571026f8af1839027c3","_id":"typescript@2.1.0-dev.20160712","_shasum":"d2e62dd5ddd39f20fc532516a46f97bd1fce3ee7","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d2e62dd5ddd39f20fc532516a46f97bd1fce3ee7","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160712.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160712.tgz_1468303743673_0.07090933294966817"},"directories":{}},"2.1.0-dev.20160713":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160713","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"f9d29370b659ad33418aed029f120c43c0f36e5c","_id":"typescript@2.1.0-dev.20160713","_shasum":"963a4687ad986fabfa5e5a8888e08849983376aa","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"963a4687ad986fabfa5e5a8888e08849983376aa","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160713.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160713.tgz_1468390142147_0.09949590777978301"},"directories":{}},"2.1.0-dev.20160714":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160714","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"cc4b331460277105ee925d1ea9ae9ba6bdc98e98","_id":"typescript@2.1.0-dev.20160714","_shasum":"df30a21d765255654a173336b64c9b2cbc9bbf0b","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"df30a21d765255654a173336b64c9b2cbc9bbf0b","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160714.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160714.tgz_1468476533620_0.45549040636979043"},"directories":{}},"2.1.0-dev.20160715":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160715","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"f16f27661fab070ab0aad2a771459f2cfb4f301c","_id":"typescript@2.1.0-dev.20160715","_shasum":"069f75c0c31f2d9c03f98355f616742dd869d306","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"069f75c0c31f2d9c03f98355f616742dd869d306","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160715.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160715.tgz_1468562934312_0.10801825835369527"},"directories":{}},"2.1.0-dev.20160716":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160716","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"87f75ff8233e655fb6eb66953b1eb871a4269a98","_id":"typescript@2.1.0-dev.20160716","_shasum":"2c8a4c4a6342cfca9959f5c033872fb37117fe00","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"2c8a4c4a6342cfca9959f5c033872fb37117fe00","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160716.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160716.tgz_1468649332986_0.016943665221333504"},"directories":{}},"2.1.0-dev.20160717":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160717","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"87f75ff8233e655fb6eb66953b1eb871a4269a98","_id":"typescript@2.1.0-dev.20160717","_shasum":"473c9c7b05ed57f6d811371098e14cc934c36928","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"473c9c7b05ed57f6d811371098e14cc934c36928","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160717.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160717.tgz_1468735742605_0.8430407578125596"},"directories":{}},"2.1.0-dev.20160718":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160718","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"87f75ff8233e655fb6eb66953b1eb871a4269a98","_id":"typescript@2.1.0-dev.20160718","_shasum":"bc9b20eb1b962cd59ced771b5acbc7ee919b5fbb","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"bc9b20eb1b962cd59ced771b5acbc7ee919b5fbb","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160718.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160718.tgz_1468822160717_0.8979758773930371"},"directories":{}},"2.1.0-dev.20160719":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160719","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e52e1659dbc030bff127e7e2e5041d014cf35314","_id":"typescript@2.1.0-dev.20160719","_shasum":"106abb8d8e4fddab0b295434f6e0d71aa589e303","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"106abb8d8e4fddab0b295434f6e0d71aa589e303","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160719.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160719.tgz_1468908544598_0.2308966713026166"},"directories":{}},"2.1.0-dev.20160720":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160720","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"80db0f2f166d0a3547319fce789c31604e8fc83b","_id":"typescript@2.1.0-dev.20160720","_shasum":"dc635cc1cedbcd9d59b13f5c1717aa297022f6d1","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"dc635cc1cedbcd9d59b13f5c1717aa297022f6d1","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160720.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160720.tgz_1468994942188_0.40555884619243443"},"directories":{}},"2.1.0-dev.20160721":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160721","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a2f45e95993d07cb8475301da7bae24e631cdb8c","_id":"typescript@2.1.0-dev.20160721","_shasum":"1a110738b2ee15e0f15b330b385a7e096a6e4541","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"1a110738b2ee15e0f15b330b385a7e096a6e4541","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160721.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160721.tgz_1469081377386_0.6835812421049923"},"directories":{}},"2.1.0-dev.20160722":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160722","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"f24341f719866af6b31f96e6eebafba1852ac80a","_id":"typescript@2.1.0-dev.20160722","_shasum":"1e0b51b06d0f6866b436a1a47f4a634c28475dcc","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"1e0b51b06d0f6866b436a1a47f4a634c28475dcc","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160722.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160722.tgz_1469167729180_0.8946240255609155"},"directories":{}},"2.1.0-dev.20160723":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160723","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a0406c777fa67aefb947d0b94878fa25b28e0b4f","_id":"typescript@2.1.0-dev.20160723","_shasum":"ee60546c072bfe0138775086a2f72c21b13eecba","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ee60546c072bfe0138775086a2f72c21b13eecba","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160723.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160723.tgz_1469254122389_0.7930373614653945"},"directories":{}},"2.1.0-dev.20160724":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160724","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6a6f5db814ddb9fc8e5d7eba9b2858d8ca3474de","_id":"typescript@2.1.0-dev.20160724","_shasum":"5c3a7e1f50e3de0959ca83c3fb6a9448dfe0e3d0","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5c3a7e1f50e3de0959ca83c3fb6a9448dfe0e3d0","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160724.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160724.tgz_1469340519469_0.15275051956996322"},"directories":{}},"2.1.0-dev.20160725":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160725","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6a6f5db814ddb9fc8e5d7eba9b2858d8ca3474de","_id":"typescript@2.1.0-dev.20160725","_shasum":"cd0f7b85cd5c2091593945ce48692b014bbee3dd","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"cd0f7b85cd5c2091593945ce48692b014bbee3dd","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160725.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160725.tgz_1469426907149_0.20951781678013504"},"directories":{}},"2.1.0-dev.20160726":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160726","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"~1.1.0","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"3ad83cb8894d609200c82ac4e6af846131eff6d0","_id":"typescript@2.1.0-dev.20160726","_shasum":"cba12d2b89f2575c645f7b17aa02c9f5099e1b7c","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"cba12d2b89f2575c645f7b17aa02c9f5099e1b7c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160726.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160726.tgz_1469513322941_0.8623922280967236"},"directories":{}},"2.1.0-dev.20160727":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160727","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"~1.1.0","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a32234c56272becb255701ea61965ce8691e993b","_id":"typescript@2.1.0-dev.20160727","_shasum":"423c1381f5472fa0b394f60c18ecdf825791451e","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"423c1381f5472fa0b394f60c18ecdf825791451e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160727.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160727.tgz_1469599729005_0.1671870572026819"},"directories":{}},"2.1.0-dev.20160728":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160728","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"07837439944c42f1fb021a98fe9ef8d78f0df3bd","_id":"typescript@2.1.0-dev.20160728","_shasum":"83c8cf32315fdeccb592d0459203ac84a2bc78a5","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"83c8cf32315fdeccb592d0459203ac84a2bc78a5","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160728.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160728.tgz_1469686116960_0.9044479886069894"},"directories":{}},"2.1.0-dev.20160729":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160729","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"013744bf858809a1b9ccbf58719ec477b2417bb5","_id":"typescript@2.1.0-dev.20160729","_shasum":"b97de8e63e0dbd24120844e349143fe61f28b460","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"b97de8e63e0dbd24120844e349143fe61f28b460","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160729.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160729.tgz_1469772541792_0.7931645456701517"},"directories":{}},"2.1.0-dev.20160730":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160730","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"394dbbf280dfcd6d8d11c625494a2b1c1b5438de","_id":"typescript@2.1.0-dev.20160730","_shasum":"edcbe327023a813c29cca4a23f02573a4b115134","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"edcbe327023a813c29cca4a23f02573a4b115134","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160730.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160730.tgz_1469858939491_0.6722474263515323"},"directories":{}},"2.1.0-dev.20160731":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160731","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"1d979ccc8cbdff99d92a8c3a4b4b2d73b311b340","_id":"typescript@2.1.0-dev.20160731","_shasum":"26a8d20435dedf7982dc584621c4d86788fc9ce3","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"26a8d20435dedf7982dc584621c4d86788fc9ce3","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160731.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160731.tgz_1469945315707_0.6564060875680298"},"directories":{}},"2.1.0-dev.20160801":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160801","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"030fbdc0d514633690fb3e26284d85fe865fb784","_id":"typescript@2.1.0-dev.20160801","_shasum":"10bb9cac35e8bead9ca67eca795f6672b878b7dc","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"10bb9cac35e8bead9ca67eca795f6672b878b7dc","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160801.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160801.tgz_1470031714838_0.4720172912348062"},"directories":{}},"2.1.0-dev.20160802":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160802","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"f06413b8d4a86b9a3a4d0b9b42e22d096ecbaf7e","_id":"typescript@2.1.0-dev.20160802","_shasum":"389c4a7b187a2347ce32a54541df008117dee2b7","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"389c4a7b187a2347ce32a54541df008117dee2b7","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160802.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160802.tgz_1470118150726_0.2683816652279347"},"directories":{}},"2.1.0-dev.20160803":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160803","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"0eeb9cbd0c9d89f0bc5d72ea7ad9248f0302cd37","_id":"typescript@2.1.0-dev.20160803","_shasum":"3f9147ba7b028ab13518c073a0b96efb8368ecb7","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"3f9147ba7b028ab13518c073a0b96efb8368ecb7","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160803.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160803.tgz_1470204536419_0.38205055915750563"},"directories":{}},"2.1.0-dev.20160804":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160804","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"14f0aa0ace2d9748350cf80bc0d8fa6cab7c1aaf","_id":"typescript@2.1.0-dev.20160804","_shasum":"0c00cbf26345931693075261ee5c9e07fa3fcf17","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0c00cbf26345931693075261ee5c9e07fa3fcf17","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160804.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160804.tgz_1470290939372_0.0748732858337462"},"directories":{}},"2.1.0-dev.20160805":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160805","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"18fb33d36fbac6d296b4e7d9a94beb29b57de607","_id":"typescript@2.1.0-dev.20160805","_shasum":"e294e8f14fe00244b91225f85c61f5b48ee0240a","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e294e8f14fe00244b91225f85c61f5b48ee0240a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160805.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160805.tgz_1470377331334_0.1990865666884929"},"directories":{}},"2.1.0-dev.20160806":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160806","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"269b8285387f5a7fdf1a2d2aafa40e96a425576d","_id":"typescript@2.1.0-dev.20160806","_shasum":"75188fcd65240c7300de4826dbe0d6c1256cb591","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"75188fcd65240c7300de4826dbe0d6c1256cb591","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160806.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160806.tgz_1470463738505_0.40200612926855683"},"directories":{}},"2.1.0-dev.20160807":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160807","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"269b8285387f5a7fdf1a2d2aafa40e96a425576d","_id":"typescript@2.1.0-dev.20160807","_shasum":"dc3b2f4b3e7b1fa89846be8610d87317907f7e81","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"dc3b2f4b3e7b1fa89846be8610d87317907f7e81","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160807.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160807.tgz_1470550134277_0.0006399520207196474"},"directories":{}},"2.1.0-dev.20160808":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160808","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"269b8285387f5a7fdf1a2d2aafa40e96a425576d","_id":"typescript@2.1.0-dev.20160808","_shasum":"8c78f9b751ff15504a21238604b8257655392873","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8c78f9b751ff15504a21238604b8257655392873","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160808.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160808.tgz_1470636525586_0.7663002426270396"},"directories":{}},"2.1.0-dev.20160809":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160809","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"3f1ec7ad4bda8fb546beece999f5f20ef6fe9f24","_id":"typescript@2.1.0-dev.20160809","_shasum":"78978a34e6e67a16ddb77a307e2f36361e976507","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"78978a34e6e67a16ddb77a307e2f36361e976507","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160809.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160809.tgz_1470722946802_0.299858161713928"},"directories":{}},"2.1.0-dev.20160810":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160810","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"557fc38446ff9e5fcfc3104dbea64e10bdf104c8","_id":"typescript@2.1.0-dev.20160810","_shasum":"d87bf00a31c7c9e9288f175b03021ab2c4f575f7","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d87bf00a31c7c9e9288f175b03021ab2c4f575f7","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160810.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160810.tgz_1470809357022_0.4564399600494653"},"directories":{}},"2.1.0-dev.20160811":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160811","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/convert-source-map":"latest","@types/chai":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e16326de8b910926f95bcf9f16aed0db5265d1fb","_id":"typescript@2.1.0-dev.20160811","_shasum":"d21a322f73876f840ffdece9c6a9d116ebae1c20","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d21a322f73876f840ffdece9c6a9d116ebae1c20","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160811.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160811.tgz_1470895759068_0.3161159004084766"},"directories":{}},"2.1.0-dev.20160812":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160812","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"9ac13abfd196f662ce606d8d99cb8791c2ad61fe","_id":"typescript@2.1.0-dev.20160812","_shasum":"89811b1bd7bcae11e20a6afcf9cc27e964390974","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"89811b1bd7bcae11e20a6afcf9cc27e964390974","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160812.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160812.tgz_1470982209610_0.7519830877427012"},"directories":{}},"2.1.0-dev.20160813":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160813","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"5bdde3b284826cb07a335012ce697327b7627fac","_id":"typescript@2.1.0-dev.20160813","_shasum":"f6077bd42def3836f9f8b3ec9421c036a437fd6c","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f6077bd42def3836f9f8b3ec9421c036a437fd6c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160813.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160813.tgz_1471068472603_0.24529314250685275"},"directories":{}},"2.1.0-dev.20160814":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160814","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"10d1e02916578e4ece7bd24352f144be1eb72305","_id":"typescript@2.1.0-dev.20160814","_shasum":"530aa056ab0965da456cb09e00aa606273e8ee7d","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"530aa056ab0965da456cb09e00aa606273e8ee7d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160814.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160814.tgz_1471154868995_0.23773130122572184"},"directories":{}},"2.1.0-dev.20160815":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160815","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"78cea2adb5a344aadf7f7eed2a0809131743b005","_id":"typescript@2.1.0-dev.20160815","_shasum":"49c579b3e436a24d4c69b109f59c2d8472c09bea","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"49c579b3e436a24d4c69b109f59c2d8472c09bea","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160815.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160815.tgz_1471241270722_0.4718144480139017"},"directories":{}},"2.1.0-dev.20160816":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160816","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"80c04f8e97aa7ab6c0e1fb604bf1551e7057183c","_id":"typescript@2.1.0-dev.20160816","_shasum":"5018dff33de398656867bd6a6a9d41c8ae71d34b","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5018dff33de398656867bd6a6a9d41c8ae71d34b","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160816.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160816.tgz_1471327639000_0.2738156788982451"},"directories":{}},"2.1.0-dev.20160817":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160817","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"11c5c4ee8e27baa7766ebe2e3090990a2e72c922","_id":"typescript@2.1.0-dev.20160817","_shasum":"968b03a6d87cb64bf8521f68687e4e1fd3264225","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"968b03a6d87cb64bf8521f68687e4e1fd3264225","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160817.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160817.tgz_1471414043504_0.42726909439079463"},"directories":{}},"2.1.0-dev.20160818":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160818","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"da8fc5d5a90dc18e83a137ba7e04d38854fc1c7d","_id":"typescript@2.1.0-dev.20160818","_shasum":"e2011c4f2fab3ba53d8609fdb92c39f67068c4d0","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e2011c4f2fab3ba53d8609fdb92c39f67068c4d0","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160818.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160818.tgz_1471500417712_0.8612639494240284"},"directories":{}},"2.1.0-dev.20160819":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160819","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a621c09606ceeb3010a58cd0f48184a88370e613","_id":"typescript@2.1.0-dev.20160819","_shasum":"7e9f142502da3b5f784b686391830e74db074a35","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"7e9f142502da3b5f784b686391830e74db074a35","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160819.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160819.tgz_1471586815129_0.48295718687586486"},"directories":{}},"2.1.0-dev.20160820":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160820","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d8ab09819560991807c489f5ac1a391be86d3de6","_id":"typescript@2.1.0-dev.20160820","_shasum":"507567984e0747178d10c6b349adc7fc9564cfaa","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"507567984e0747178d10c6b349adc7fc9564cfaa","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160820.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160820.tgz_1471673215161_0.07676441548392177"},"directories":{}},"2.1.0-dev.20160821":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160821","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"66f6f9ba05e1a3ebdeb0a66e0603f40ab3e9b8a3","_id":"typescript@2.1.0-dev.20160821","_shasum":"8b040fd08390f19c29c8a463883f67b43133385f","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8b040fd08390f19c29c8a463883f67b43133385f","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160821.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160821.tgz_1471759613787_0.36157523607835174"},"directories":{}},"2.1.0-dev.20160822":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160822","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"66f6f9ba05e1a3ebdeb0a66e0603f40ab3e9b8a3","_id":"typescript@2.1.0-dev.20160822","_shasum":"08eaac7f751127771fe024c3bf3c9c47fd6b3ad9","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"08eaac7f751127771fe024c3bf3c9c47fd6b3ad9","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160822.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160822.tgz_1471846003035_0.5255277927499264"},"directories":{}},"2.1.0-dev.20160823":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160823","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"93de502656a7a0cdf30737513d29bcb396c79662","_id":"typescript@2.1.0-dev.20160823","_shasum":"e18198b0fad51e32b38ba4a35655185d6cf97e2a","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e18198b0fad51e32b38ba4a35655185d6cf97e2a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160823.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160823.tgz_1471932415212_0.7927686260081828"},"directories":{}},"2.1.0-dev.20160824":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160824","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ddb5a00410d695d35b55c5482876a16f7c696c4b","_id":"typescript@2.1.0-dev.20160824","_shasum":"6601e4b55a72ee35052c6a73943e6b2e9ca77791","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"6601e4b55a72ee35052c6a73943e6b2e9ca77791","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160824.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160824.tgz_1472018824029_0.1678892495110631"},"directories":{}},"2.1.0-dev.20160825":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160825","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ddb5a00410d695d35b55c5482876a16f7c696c4b","_id":"typescript@2.1.0-dev.20160825","_shasum":"e9eefc6e9c5d054d5ee30356a378bba80bc648a8","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e9eefc6e9c5d054d5ee30356a378bba80bc648a8","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160825.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160825.tgz_1472105221420_0.7407153714448214"},"directories":{}},"2.1.0-dev.20160826":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160826","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c72f5e28e819eac8ebfda080a0aa681d445c58a8","_id":"typescript@2.1.0-dev.20160826","_shasum":"7fc749693fa9689b4918276af2fc82e190519679","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"7fc749693fa9689b4918276af2fc82e190519679","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160826.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160826.tgz_1472191630823_0.3509740678127855"},"directories":{}},"2.1.0-dev.20160827":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160827","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"598ca48c94535156c842ddc13fddd24aac1130fe","_id":"typescript@2.1.0-dev.20160827","_shasum":"d690df775c4288ba79a0a2a16a6ae6f7df79b590","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d690df775c4288ba79a0a2a16a6ae6f7df79b590","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160827.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160827.tgz_1472278022360_0.19597334624268115"},"directories":{}},"2.1.0-dev.20160828":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160828","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"598ca48c94535156c842ddc13fddd24aac1130fe","_id":"typescript@2.1.0-dev.20160828","_shasum":"60036997b6f30b0681cd004d5f635e2a1432cf32","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"60036997b6f30b0681cd004d5f635e2a1432cf32","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160828.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160828.tgz_1472364419748_0.08881452330388129"},"directories":{}},"2.1.0-dev.20160829":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160829","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"0485bb6b56b38749b83a23626243627a42472d50","_id":"typescript@2.1.0-dev.20160829","_shasum":"1cb22b81ba618c19c284c26ad87c16cf4edebc88","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"1cb22b81ba618c19c284c26ad87c16cf4edebc88","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160829.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160829.tgz_1472450834836_0.5940582328476012"},"directories":{}},"2.1.0-dev.20160830":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160830","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"0485bb6b56b38749b83a23626243627a42472d50","_id":"typescript@2.1.0-dev.20160830","_shasum":"4ec8efd6d1c73c0a7da6e6364c71d7df766b26b9","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4ec8efd6d1c73c0a7da6e6364c71d7df766b26b9","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160830.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160830.tgz_1472537194354_0.999076668638736"},"directories":{}},"2.0.2":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.0.2","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d6dac6a6cb83164db329482357dbd2ed3a6f459b","_id":"typescript@2.0.2","_shasum":"a63f848074498a4dfa7f293afda0835d501d9540","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"a63f848074498a4dfa7f293afda0835d501d9540","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.0.2.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.0.2.tgz_1472573195120_0.8466535992920399"},"directories":{}},"2.1.0-dev.20160831":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160831","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"0b9573118454ab2420abc168405be1a78b482b57","_id":"typescript@2.1.0-dev.20160831","_shasum":"6e9098beae752a5cc388a3319df32779c456e2d4","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"6e9098beae752a5cc388a3319df32779c456e2d4","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160831.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160831.tgz_1472623615739_0.517490531783551"},"directories":{}},"2.1.0-dev.20160901":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160901","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"707d61d7fe953b04b3ad117294a33135573ced3a","_id":"typescript@2.1.0-dev.20160901","_shasum":"e7d6ee18f76aef1600a4e620eb20fca748b1cc61","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e7d6ee18f76aef1600a4e620eb20fca748b1cc61","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160901.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160901.tgz_1472710009861_0.3333348776213825"},"directories":{}},"2.1.0-dev.20160902":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160902","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"8038eb943e6509a5da3377853ca04986bededbb1","_id":"typescript@2.1.0-dev.20160902","_shasum":"ca19d07675b4de78a3f41d3a919a5d2c9c2129bf","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ca19d07675b4de78a3f41d3a919a5d2c9c2129bf","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160902.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160902.tgz_1472796426229_0.9049535642843693"},"directories":{}},"2.1.0-dev.20160903":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160903","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"32b6746afe193bfa0cd07798768134f1b8963fe1","_id":"typescript@2.1.0-dev.20160903","_shasum":"fd16d831e3b0cba8f426af44dacc4ca52a245b1d","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"fd16d831e3b0cba8f426af44dacc4ca52a245b1d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160903.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160903.tgz_1472883057481_0.34614215698093176"},"directories":{}},"2.1.0-dev.20160904":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160904","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"32b6746afe193bfa0cd07798768134f1b8963fe1","_id":"typescript@2.1.0-dev.20160904","_shasum":"4ef619c7ca0bf0098626548e2b24762f4963eb59","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4ef619c7ca0bf0098626548e2b24762f4963eb59","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160904.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160904.tgz_1472969422811_0.8531629010103643"},"directories":{}},"2.1.0-dev.20160905":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160905","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2379000f8a9b2bbd1fface413387927ea2b31876","_id":"typescript@2.1.0-dev.20160905","_shasum":"ac6f7c84d0049b36b980342bc1570e88375d1ded","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ac6f7c84d0049b36b980342bc1570e88375d1ded","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160905.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160905.tgz_1473055825707_0.8476049695163965"},"directories":{}},"2.1.0-dev.20160906":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160906","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2379000f8a9b2bbd1fface413387927ea2b31876","_id":"typescript@2.1.0-dev.20160906","_shasum":"f2c39ba7df449ddd233bb16ad44e1c54e27550ec","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f2c39ba7df449ddd233bb16ad44e1c54e27550ec","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160906.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160906.tgz_1473142303407_0.41269476944580674"},"directories":{}},"2.1.0-dev.20160907":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160907","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"46856462816b54e32a9d962e218d6e3f8ff42348","_id":"typescript@2.1.0-dev.20160907","_shasum":"a16034e0e161e0efda465790f977174935d9ae77","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a16034e0e161e0efda465790f977174935d9ae77","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160907.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160907.tgz_1473228446083_0.6078537025023252"},"directories":{}},"2.1.0-dev.20160908":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160908","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"2.1.0-dev.20160906"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"874846a5348516f1a0decbe3e8d3e0d5222b6589","_id":"typescript@2.1.0-dev.20160908","_shasum":"09358786ccf7562c177f5c62808fea334e81b4e1","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"09358786ccf7562c177f5c62808fea334e81b4e1","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160908.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160908.tgz_1473314850284_0.8407958562020212"},"directories":{}},"2.1.0-dev.20160909":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160909","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6b25dab5e3735452b25f821178c28e51421db3c0","_id":"typescript@2.1.0-dev.20160909","_shasum":"adcf80b182769ea0a8144cbfd875e235756966ca","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"adcf80b182769ea0a8144cbfd875e235756966ca","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160909.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160909.tgz_1473401250770_0.6093201250769198"},"directories":{}},"2.1.0-dev.20160910":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160910","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2305c685607f274992b12ac6a0dc5224b0667e89","_id":"typescript@2.1.0-dev.20160910","_shasum":"02a0977e6d276ad8f10e04d12a6e437ce096e116","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"02a0977e6d276ad8f10e04d12a6e437ce096e116","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160910.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160910.tgz_1473487650637_0.1020425409078598"},"directories":{}},"2.1.0-dev.20160911":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160911","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2305c685607f274992b12ac6a0dc5224b0667e89","_id":"typescript@2.1.0-dev.20160911","_shasum":"b3b97c88a8d808a567874e8065a1c59dfd1b1852","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"b3b97c88a8d808a567874e8065a1c59dfd1b1852","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160911.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160911.tgz_1473574072096_0.10062081716023386"},"directories":{}},"2.1.0-dev.20160912":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160912","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"3cca17e17d77224d3de2064fad26e0a339e237e2","_id":"typescript@2.1.0-dev.20160912","_shasum":"2f8f846a549997470bb25e86d0ab8155333e6bcc","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"2f8f846a549997470bb25e86d0ab8155333e6bcc","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160912.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160912.tgz_1473660433879_0.11540155904367566"},"directories":{}},"2.1.0-dev.20160913":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160913","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"9812ab5666e67518663c0d9e1a94af51be399f0a","_id":"typescript@2.1.0-dev.20160913","_shasum":"846f37d76467a871065f25aec001da1962892a37","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"846f37d76467a871065f25aec001da1962892a37","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160913.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160913.tgz_1473746890251_0.21147283888421953"},"directories":{}},"2.1.0-dev.20160914":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160914","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"fe642f558633d8ea0cbfa75cc7e0a82c6d7ae2aa","_id":"typescript@2.1.0-dev.20160914","_shasum":"6697b363ae21da192171f8423e86ea6757fcc2d9","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"6697b363ae21da192171f8423e86ea6757fcc2d9","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160914.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160914.tgz_1473833280114_0.5509565267711878"},"directories":{}},"2.1.0-dev.20160915":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160915","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"bbf80a733c84cc0fefbf87210e8b19c727dbe0d6","_id":"typescript@2.1.0-dev.20160915","_shasum":"2e0086bc1cd0ab146aa2dc945dee3429ba43b5db","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"2e0086bc1cd0ab146aa2dc945dee3429ba43b5db","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160915.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160915.tgz_1473919678310_0.7899313119705766"},"directories":{}},"2.1.0-dev.20160916":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160916","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"50d243e469f7e85ea23a941de9308aa8974981c7","_id":"typescript@2.1.0-dev.20160916","_shasum":"13972b9636005f37a46fa6de1c1a878bc54cca0f","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"13972b9636005f37a46fa6de1c1a878bc54cca0f","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160916.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160916.tgz_1474006088134_0.7629320709966123"},"directories":{}},"2.1.0-dev.20160917":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160917","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"02547fe664a1b5d1f07ea459f054c34e356d3746","_id":"typescript@2.1.0-dev.20160917","_shasum":"0ddfda2542065c0a95d40360cca641dedddcb8f2","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0ddfda2542065c0a95d40360cca641dedddcb8f2","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160917.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160917.tgz_1474092519988_0.7764203362166882"},"directories":{}},"2.1.0-dev.20160918":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160918","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"02547fe664a1b5d1f07ea459f054c34e356d3746","_id":"typescript@2.1.0-dev.20160918","_shasum":"5c3507013b4664ce4d49a42078d7d3a5d9c7f32d","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5c3507013b4664ce4d49a42078d7d3a5d9c7f32d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160918.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160918.tgz_1474178903558_0.22842928464524448"},"directories":{}},"2.1.0-dev.20160919":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160919","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"b7d1d11ba32fe0aa01d7c06ad43c2c7f7d9ffb7f","_id":"typescript@2.1.0-dev.20160919","_shasum":"e8c9f9175a49a47135a1a79dca49676c51311e1a","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e8c9f9175a49a47135a1a79dca49676c51311e1a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160919.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160919.tgz_1474265316838_0.3610878540202975"},"directories":{}},"2.1.0-dev.20160920":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160920","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"070aa83cc06b2974639bbefcde98e6e2fb5fe693","_id":"typescript@2.1.0-dev.20160920","_shasum":"6327e7aafecdf7d336922b84a76f32a5c46b866b","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"6327e7aafecdf7d336922b84a76f32a5c46b866b","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160920.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160920.tgz_1474396973555_0.9266280450392514"},"directories":{}},"2.1.0-dev.20160921":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160921","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"070aa83cc06b2974639bbefcde98e6e2fb5fe693","_id":"typescript@2.1.0-dev.20160921","_shasum":"2a3dd4701a9f29d373b51997f41df1f18a1fd383","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"2a3dd4701a9f29d373b51997f41df1f18a1fd383","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160921.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160921.tgz_1474438075089_0.24451784463599324"},"directories":{}},"2.1.0-dev.20160922":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160922","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"95c3eccbe9f3f7e1857ce157d437e6b80b3c9c6f","_id":"typescript@2.1.0-dev.20160922","_shasum":"f4a25d2cc7efa7c0b9764b0b77d49dd200667e5b","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f4a25d2cc7efa7c0b9764b0b77d49dd200667e5b","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160922.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160922.tgz_1474524497536_0.23874470149166882"},"directories":{}},"2.0.3":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.0.3","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"3.15.1","typescript":"2.0.*"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"4f65a2885e000c27e5f079171d440797d7307b97","_id":"typescript@2.0.3","_shasum":"33dec9eae86b8eee327dd419ca050c853cabd514","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"33dec9eae86b8eee327dd419ca050c853cabd514","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.0.3.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.0.3.tgz_1474560003144_0.4724818258546293"},"directories":{}},"2.1.0-dev.20160923":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160923","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"95c3eccbe9f3f7e1857ce157d437e6b80b3c9c6f","_id":"typescript@2.1.0-dev.20160923","_shasum":"4bbab1acd3ca38b5c6e2f806a5a5dd6c4fb11b3b","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4bbab1acd3ca38b5c6e2f806a5a5dd6c4fb11b3b","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160923.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160923.tgz_1474610875190_0.1106874574907124"},"directories":{}},"2.1.0-dev.20160924":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160924","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"95c3eccbe9f3f7e1857ce157d437e6b80b3c9c6f","_id":"typescript@2.1.0-dev.20160924","_shasum":"d49db8bcd6b529510f8d86bec0cf1519225aaf85","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d49db8bcd6b529510f8d86bec0cf1519225aaf85","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160924.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160924.tgz_1474697272859_0.6839036403689533"},"directories":{}},"2.1.0-dev.20160925":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160925","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"95c3eccbe9f3f7e1857ce157d437e6b80b3c9c6f","_id":"typescript@2.1.0-dev.20160925","_shasum":"44df5d3c20d9dfa819381c35fbd08b3246a45701","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"44df5d3c20d9dfa819381c35fbd08b3246a45701","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160925.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160925.tgz_1474783696093_0.69422786985524"},"directories":{}},"2.1.0-dev.20160926":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160926","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"9950b98b58b453668d0bfab4f07617eda4633152","_id":"typescript@2.1.0-dev.20160926","_shasum":"b7d1e1e6d5537875ccb67ba71971dac2fc23a0ca","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"b7d1e1e6d5537875ccb67ba71971dac2fc23a0ca","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160926.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160926.tgz_1474870093461_0.1468853773549199"},"directories":{}},"2.1.0-dev.20160927":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160927","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a633652f08db9efe43ea63df76ecc6edadbb89c5","_id":"typescript@2.1.0-dev.20160927","_shasum":"44704b148f16b0ef9502c4dc363036c1a3908b23","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"44704b148f16b0ef9502c4dc363036c1a3908b23","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160927.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160927.tgz_1474956490080_0.12269348627887666"},"directories":{}},"2.1.0-dev.20160928":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160928","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"60ab007d3abf3faa39776c4708c1cc14b43dbcc2","_id":"typescript@2.1.0-dev.20160928","_shasum":"915bf924979be9b436748d612d8895d613a7a020","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"915bf924979be9b436748d612d8895d613a7a020","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160928.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160928.tgz_1475042896102_0.5659565720707178"},"directories":{}},"2.1.0-dev.20160929":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160929","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"60ab007d3abf3faa39776c4708c1cc14b43dbcc2","_id":"typescript@2.1.0-dev.20160929","_shasum":"a9fe8a0f4135a2b3413ff0316a83315506778344","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a9fe8a0f4135a2b3413ff0316a83315506778344","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160929.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160929.tgz_1475129280349_0.6854292876087129"},"directories":{}},"2.1.0-dev.20160930":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20160930","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"edd8eb8733c965b0145267a6d2cf3b39705639eb","_id":"typescript@2.1.0-dev.20160930","_shasum":"9fd3fe380ab0ae767338145a98f3c34cc0e33148","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"9fd3fe380ab0ae767338145a98f3c34cc0e33148","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20160930.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20160930.tgz_1475215698555_0.2479304620064795"},"directories":{}},"2.1.0-dev.20161001":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161001","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d1ac8dde0b2a9bc4929cc45a918e29dda651dafe","_id":"typescript@2.1.0-dev.20161001","_shasum":"7a76ed1cd7d3c6a569a2dac8c816a1f6df65dfe5","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"7a76ed1cd7d3c6a569a2dac8c816a1f6df65dfe5","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161001.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161001.tgz_1475302125087_0.5224863062612712"},"directories":{}},"2.1.0-dev.20161002":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161002","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"7a1635f2f4a26151a0a4015cd5e5734e66aa65f7","_id":"typescript@2.1.0-dev.20161002","_shasum":"0472060e9a9442bc2d4599c89b84441df32eac65","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0472060e9a9442bc2d4599c89b84441df32eac65","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161002.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161002.tgz_1475388515946_0.7307403273880482"},"directories":{}},"2.1.0-dev.20161003":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161003","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"7a1635f2f4a26151a0a4015cd5e5734e66aa65f7","_id":"typescript@2.1.0-dev.20161003","_shasum":"124b2bb1459829320e17516ca908330c586f88f1","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"124b2bb1459829320e17516ca908330c586f88f1","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161003.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161003.tgz_1475474900531_0.32315184106118977"},"directories":{}},"2.1.0-dev.20161004":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161004","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a0fc9059f927b289461ded2128b802d56118cd37","_id":"typescript@2.1.0-dev.20161004","_shasum":"eae4bd868605b2ae20cb1c65fc4f73fd7881b056","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"eae4bd868605b2ae20cb1c65fc4f73fd7881b056","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161004.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161004.tgz_1475561324799_0.25964410114102066"},"directories":{}},"2.1.0-dev.20161005":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161005","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ebb17e801923e041c03fae1363d60de4e2f20bf5","_id":"typescript@2.1.0-dev.20161005","_shasum":"34d9e4e1b3c39acb88d0118fe09fb26acf144ca4","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"34d9e4e1b3c39acb88d0118fe09fb26acf144ca4","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161005.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161005.tgz_1475647723256_0.45440940582193434"},"directories":{}},"2.1.0-dev.20161006":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161006","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d72a0430ca1c2c9140ced639a54d5f18bbafb96d","_id":"typescript@2.1.0-dev.20161006","_shasum":"7a8fbd3f34daaefa6386fed0dee15f97ab8c70fc","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"7a8fbd3f34daaefa6386fed0dee15f97ab8c70fc","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161006.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161006.tgz_1475734136888_0.38792360899969935"},"directories":{}},"2.1.0-dev.20161007":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161007","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"9c0d6b2175a8aaa40dc528ebcc000b644c699559","_id":"typescript@2.1.0-dev.20161007","_shasum":"304d8dfa408a4c8447b63a24495cb9285837be45","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"304d8dfa408a4c8447b63a24495cb9285837be45","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161007.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161007.tgz_1475820526479_0.48157797125168145"},"directories":{}},"2.0.6-insiders.20161007":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.0.6-insiders.20161007","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"3.15.1","typescript":"2.0.*"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ca8057e5c7781bfeefd81c8234369c8c5b2f7d19","_id":"typescript@2.0.6-insiders.20161007","_shasum":"79e5135c932c10869a804468bc35b760806dbc94","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"79e5135c932c10869a804468bc35b760806dbc94","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.0.6-insiders.20161007.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.0.6-insiders.20161007.tgz_1475884013859_0.36589682660996914"},"directories":{}},"2.1.0-dev.20161008":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161008","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d34916abf8682af409d4b1426f0bb0c2f1700eac","_id":"typescript@2.1.0-dev.20161008","_shasum":"e3d9f8e2d44c103368906359a98d740d4e2257a3","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e3d9f8e2d44c103368906359a98d740d4e2257a3","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161008.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161008.tgz_1475906961410_0.3471648287959397"},"directories":{}},"2.1.0-dev.20161009":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161009","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d34916abf8682af409d4b1426f0bb0c2f1700eac","_id":"typescript@2.1.0-dev.20161009","_shasum":"5bd1188042760fd2ee1cf4c470f4668a9d012127","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5bd1188042760fd2ee1cf4c470f4668a9d012127","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161009.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161009.tgz_1475993309386_0.8348111747764051"},"directories":{}},"2.1.0-dev.20161010":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161010","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d34916abf8682af409d4b1426f0bb0c2f1700eac","_id":"typescript@2.1.0-dev.20161010","_shasum":"8786e1e14650cc4c7be019e1759b131453cee363","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8786e1e14650cc4c7be019e1759b131453cee363","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161010.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161010.tgz_1476079702829_0.3145750726107508"},"directories":{}},"2.1.0-dev.20161011":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161011","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"3b0515fd8b8742d1c25c70642e853a9ed4e324c7","_id":"typescript@2.1.0-dev.20161011","_shasum":"06319024a2708d64921f4cda18791a3b49d47725","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"06319024a2708d64921f4cda18791a3b49d47725","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161011.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161011.tgz_1476166122404_0.24179362575523555"},"directories":{}},"2.1.0-dev.20161012":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161012","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"9f73ae59035b17ff7498d1e2d968137f06404d82","_id":"typescript@2.1.0-dev.20161012","_shasum":"f03053419a0d6528217f8112087b404e3290a2dd","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f03053419a0d6528217f8112087b404e3290a2dd","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161012.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161012.tgz_1476252527707_0.5056233052164316"},"directories":{}},"2.0.6-insiders.20161012":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.0.6-insiders.20161012","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"3.15.1","typescript":"2.0.*"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"635313ee45e1edd09e5e6e849cc58d2ffdacdfc8","_id":"typescript@2.0.6-insiders.20161012","_shasum":"0d3635b7fc1c752ffb8f4707bc6808c8c4d7f006","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"0d3635b7fc1c752ffb8f4707bc6808c8c4d7f006","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.0.6-insiders.20161012.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.0.6-insiders.20161012.tgz_1476321779893_0.024057665141299367"},"directories":{}},"2.1.0-dev.20161013":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161013","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"31a55e64523ec38b6e484f92fb2756b57e4f439d","_id":"typescript@2.1.0-dev.20161013","_shasum":"79b8ce0e3bf97153ac392a9a5d275a8c832016d8","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"79b8ce0e3bf97153ac392a9a5d275a8c832016d8","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161013.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161013.tgz_1476338937439_0.36088081705383956"},"directories":{}},"2.1.0-dev.20161014":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161014","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"cdafc9dca1df725e6684a84433d147710870e2bd","_id":"typescript@2.1.0-dev.20161014","_shasum":"a5a32c64f0fd95d055de6687705a588fe8ffd901","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a5a32c64f0fd95d055de6687705a588fe8ffd901","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161014.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161014.tgz_1476425316282_0.6303214551880956"},"directories":{}},"2.0.6-insiders.20161014":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.0.6-insiders.20161014","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"3.15.1","typescript":"2.0.*"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"3030442f525b52c8fe11822b9d5a79deb0b45b48","_id":"typescript@2.0.6-insiders.20161014","_shasum":"4a2ca944708ecef95e2d6179d8b03e49e52c82b2","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"4a2ca944708ecef95e2d6179d8b03e49e52c82b2","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.0.6-insiders.20161014.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.0.6-insiders.20161014.tgz_1476472277614_0.1924369919579476"},"directories":{}},"2.1.0-dev.20161015":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161015","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a1cbfcae4b2560f2709a88e4d41185ac548c5e5c","_id":"typescript@2.1.0-dev.20161015","_shasum":"8754ef8f5d95d54ded7e2857116cd9676285fb9f","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8754ef8f5d95d54ded7e2857116cd9676285fb9f","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161015.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161015.tgz_1476511737558_0.49819342722184956"},"directories":{}},"2.1.0-dev.20161016":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161016","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"65b1cf665e6d387a09aa7c6dde149992ca05aa17","_id":"typescript@2.1.0-dev.20161016","_shasum":"0158cafe224e2e1fa4aa5b9e884f6b65ba577ca3","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0158cafe224e2e1fa4aa5b9e884f6b65ba577ca3","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161016.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161016.tgz_1476598117198_0.09547841153107584"},"directories":{}},"2.1.0-dev.20161017":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161017","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"65b1cf665e6d387a09aa7c6dde149992ca05aa17","_id":"typescript@2.1.0-dev.20161017","_shasum":"eee37999418fd7f9f5b8bc8f5adf38d235a995cb","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"eee37999418fd7f9f5b8bc8f5adf38d235a995cb","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161017.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161017.tgz_1476684542482_0.7064095779787749"},"directories":{}},"2.0.6-insiders.20161017":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.0.6-insiders.20161017","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"3.15.1","typescript":"2.0.*"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ea3cbfbca43dcc1f3256afd42e78fdaf76e0454c","_id":"typescript@2.0.6-insiders.20161017","_shasum":"aeabc76cb09b33057bdc4bfda26a1e8c94257d4e","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"aeabc76cb09b33057bdc4bfda26a1e8c94257d4e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.0.6-insiders.20161017.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.0.6-insiders.20161017.tgz_1476754516742_0.9117188674863428"},"directories":{}},"2.1.0-dev.20161018":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161018","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"68c485d9f94036a7f6953bfb8e03e5c4816bea80","_id":"typescript@2.1.0-dev.20161018","_shasum":"0dec581b522c54678969925128f45cca95cffdc0","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0dec581b522c54678969925128f45cca95cffdc0","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161018.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161018.tgz_1476770924850_0.3112610881216824"},"directories":{}},"2.1.0-dev.20161019":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161019","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"14e5de3b1d6eafa2d3213a72b8599ecc972ed419","_id":"typescript@2.1.0-dev.20161019","_shasum":"45c6a32b1b4a00dd87c8e1e3ee3e00b80f61b5c0","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"45c6a32b1b4a00dd87c8e1e3ee3e00b80f61b5c0","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161019.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161019.tgz_1476857338759_0.9975527203641832"},"directories":{}},"2.1.0-dev.20161020":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161020","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"4fbbbed321baa58418b9379b418278d31400fe3e","_id":"typescript@2.1.0-dev.20161020","_shasum":"c4cf57674d10f3da5017a88c53b7506b3a9cd03e","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"c4cf57674d10f3da5017a88c53b7506b3a9cd03e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161020.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161020.tgz_1476943757696_0.4401043807156384"},"directories":{}},"2.1.0-dev.20161021":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161021","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"3263fdec7cd4f464ec211fd8c82865039da79d7e","_id":"typescript@2.1.0-dev.20161021","_shasum":"f4d3b80d72efa99539f0461372cde182d14cdf41","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f4d3b80d72efa99539f0461372cde182d14cdf41","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161021.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161021.tgz_1477030128544_0.9167353224474937"},"directories":{}},"2.1.0-dev.20161022":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161022","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"cef9d8597914f633f51c15b5ae6f9691c4dcfbc5","_id":"typescript@2.1.0-dev.20161022","_shasum":"efbbe17ca29f88c110f7c94e9a88d849e32e30f4","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"efbbe17ca29f88c110f7c94e9a88d849e32e30f4","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161022.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161022.tgz_1477116509148_0.12494631693698466"},"directories":{}},"2.1.0-dev.20161023":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161023","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"cef9d8597914f633f51c15b5ae6f9691c4dcfbc5","_id":"typescript@2.1.0-dev.20161023","_shasum":"7065b4f858b53ec73f4cf865f28f6483fff6e400","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"7065b4f858b53ec73f4cf865f28f6483fff6e400","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161023.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161023.tgz_1477202944705_0.21954477997496724"},"directories":{}},"2.1.0-dev.20161024":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161024","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"cef9d8597914f633f51c15b5ae6f9691c4dcfbc5","_id":"typescript@2.1.0-dev.20161024","_shasum":"8c9bd571ce990a1bc01444e28b5124658145b83a","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8c9bd571ce990a1bc01444e28b5124658145b83a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161024.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161024.tgz_1477289335302_0.23214965988881886"},"directories":{}},"2.1.0-dev.20161025":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161025","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"3bdff73c16b5a7eca2407500254764618b35bce4","_id":"typescript@2.1.0-dev.20161025","_shasum":"183de682d0b22b23fd1a040d6559b193d1bc0c7c","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"183de682d0b22b23fd1a040d6559b193d1bc0c7c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161025.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161025.tgz_1477375752671_0.7953087924979627"},"directories":{}},"2.0.6":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.0.6","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"3.15.1","typescript":"2.0.*"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"80bca648441e0ddd4c1cec26a17da27d9cc49c91","_id":"typescript@2.0.6","_shasum":"5385499ac9811508c2c43e0ea07a1ddca435e111","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5385499ac9811508c2c43e0ea07a1ddca435e111","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.0.6.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.0.6.tgz_1477418019854_0.024905235040932894"},"directories":{}},"2.1.0-dev.20161026":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161026","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"f6b82d5e9ff4ee5a9e2188536b9d6dcf57d3c893","_id":"typescript@2.1.0-dev.20161026","_shasum":"9157eb9af6ee7d8c39ab8b8ba417ccf18c6069e7","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"9157eb9af6ee7d8c39ab8b8ba417ccf18c6069e7","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161026.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161026.tgz_1477462182202_0.7571386282797903"},"directories":{}},"2.1.0-dev.20161027":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161027","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e6bea90a1f34a1fb00b0f6d842c97ca3aae50891","_id":"typescript@2.1.0-dev.20161027","_shasum":"f6456102956dee194398fa1ad093b944c8db4f0a","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f6456102956dee194398fa1ad093b944c8db4f0a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161027.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161027.tgz_1477548536110_0.5045525862369686"},"directories":{}},"2.1.0-dev.20161028":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161028","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"4513ae3034a21c728d610a74c39ab833646024e9","_id":"typescript@2.1.0-dev.20161028","_shasum":"4b7b67c734254db040566f7289f7eda5e9565825","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4b7b67c734254db040566f7289f7eda5e9565825","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161028.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161028.tgz_1477634924869_0.5119802274275571"},"directories":{}},"2.1.0-dev.20161029":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161029","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"980f9fd2a91c956b7bf09c19fd8b8f968cf6f278","_id":"typescript@2.1.0-dev.20161029","_shasum":"889598d3b2a3b5c8d7e2ad6a8ba7f300eff27caa","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"889598d3b2a3b5c8d7e2ad6a8ba7f300eff27caa","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161029.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161029.tgz_1477721337236_0.40156461601145566"},"directories":{}},"2.1.0-dev.20161030":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161030","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"44ce59d1d8c0148e7f32dfa55ea65a2b394bfbb9","_id":"typescript@2.1.0-dev.20161030","_shasum":"bf258553c416dd5bbd6227eed728a9098dab5081","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"bf258553c416dd5bbd6227eed728a9098dab5081","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161030.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161030.tgz_1477807750758_0.0829834605101496"},"directories":{}},"2.1.0-dev.20161031":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161031","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"44ce59d1d8c0148e7f32dfa55ea65a2b394bfbb9","_id":"typescript@2.1.0-dev.20161031","_shasum":"bcea4c7c0b6c9cf1f7bfa403bd64513c8fc782b0","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"bcea4c7c0b6c9cf1f7bfa403bd64513c8fc782b0","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161031.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161031.tgz_1477894126372_0.20539986807852983"},"directories":{}},"2.1.0-dev.20161101":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161101","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"4371889854d67cfabf39b22dd9f2cb9822152596","_id":"typescript@2.1.0-dev.20161101","_shasum":"c2abfbb4eaf2be5972d95799ebdce28d73a239af","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"c2abfbb4eaf2be5972d95799ebdce28d73a239af","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161101.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161101.tgz_1477980536904_0.8716443288139999"},"directories":{}},"2.1.0-dev.20161102":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161102","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6b94bae437b96614266c38b653aee3aad541d865","_id":"typescript@2.1.0-dev.20161102","_shasum":"780d4a676b9df09c866e536cb40cf9f93feee65b","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"780d4a676b9df09c866e536cb40cf9f93feee65b","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161102.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161102.tgz_1478066924952_0.37231264053843915"},"directories":{}},"2.1.0-dev.20161103":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161103","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ab75ea75d337d82138083c52caea7419f3b20929","_id":"typescript@2.1.0-dev.20161103","_shasum":"747a2e148526cd10d8e7723e731bdbbf57f3b65e","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"747a2e148526cd10d8e7723e731bdbbf57f3b65e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161103.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161103.tgz_1478153338922_0.7183836842887104"},"directories":{}},"2.0.7":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.0.7","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"3.15.1","typescript":"2.0.*"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"dbf69b7873367377ee2fae4eea198074a6f6f7c6","_id":"typescript@2.0.7","_shasum":"efc39e8822e240d0b741d06ff86708137bcdb5e4","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"efc39e8822e240d0b741d06ff86708137bcdb5e4","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.0.7.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.0.7.tgz_1478210687167_0.05890897079370916"},"directories":{}},"2.1.0-dev.20161104":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161104","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"4.0.0-dev.0","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"1c004bf317a3e9103572668191055ba1c86f1788","_id":"typescript@2.1.0-dev.20161104","_shasum":"01ebabbc76b36c6fb56a77f9df34fc7fe5fe8512","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"01ebabbc76b36c6fb56a77f9df34fc7fe5fe8512","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161104.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161104.tgz_1478239758532_0.9955955028999597"},"directories":{}},"2.1.0-dev.20161105":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161105","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"4.0.0-dev.0","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ed4fead087ab0fea1811e4b42b6d8e599ee13f1e","_id":"typescript@2.1.0-dev.20161105","_shasum":"be261e6cfeccaad5026aeab22f938ae0d91f5897","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"be261e6cfeccaad5026aeab22f938ae0d91f5897","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161105.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161105.tgz_1478326155953_0.10281790257431567"},"directories":{}},"2.1.0-dev.20161106":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161106","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"4.0.0-dev.0","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ed4fead087ab0fea1811e4b42b6d8e599ee13f1e","_id":"typescript@2.1.0-dev.20161106","_shasum":"f6197280f92e2b306f40c0bc89ccece954b5764d","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f6197280f92e2b306f40c0bc89ccece954b5764d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161106.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161106.tgz_1478412540497_0.039761449210345745"},"directories":{}},"2.1.0-dev.20161107":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161107","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"4.0.0-dev.0","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ed4fead087ab0fea1811e4b42b6d8e599ee13f1e","_id":"typescript@2.1.0-dev.20161107","_shasum":"420e8ea43693dde3ab62853fd1edbafce53087a3","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"420e8ea43693dde3ab62853fd1edbafce53087a3","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161107.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161107.tgz_1478502525023_0.5875145960599184"},"directories":{}},"2.0.8":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.0.8","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"3.15.1","typescript":"2.0.*"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"cc81fa76ff822bd4ea1be41b4ed9c61346984fd0","_id":"typescript@2.0.8","_shasum":"c249f530890e0f992e71733b2e0554d792cb8970","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"c249f530890e0f992e71733b2e0554d792cb8970","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.0.8.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.0.8.tgz_1478568615372_0.22711650398559868"},"directories":{}},"2.1.0-dev.20161108":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161108","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"4.0.0-dev.0","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"84f8f8bba89ff459180852179c31ea7e9105736d","_id":"typescript@2.1.0-dev.20161108","_shasum":"0a1a63a47741c74359fac7fe877b254b0f88ca5f","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0a1a63a47741c74359fac7fe877b254b0f88ca5f","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161108.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161108.tgz_1478588941321_0.6590555729344487"},"directories":{}},"2.1.1":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.1","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"4.0.0-dev.0","typescript":"2.1.0-dev.20161101"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"8e8ec9f81d6282c70ef268736c5ed4541c3facbe","_id":"typescript@2.1.1","_shasum":"41c2b64472f529331b2055c0424862b44ce58d42","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"41c2b64472f529331b2055c0424862b44ce58d42","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.1.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.1.tgz_1478626299474_0.7849834312219173"},"directories":{}},"2.1.0-dev.20161109":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161109","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"4.0.0-dev.0","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"28cc9385035a65f5dcd74a4f9b47e7022678302f","_id":"typescript@2.1.0-dev.20161109","_shasum":"4b0bd9899f30e2154cc3270a589c0bb09971cd8a","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4b0bd9899f30e2154cc3270a589c0bb09971cd8a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161109.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161109.tgz_1478675364370_0.1273908147122711"},"directories":{}},"2.1.0-dev.20161110":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.0-dev.20161110","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"4.0.0-dev.0","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"28cc9385035a65f5dcd74a4f9b47e7022678302f","_id":"typescript@2.1.0-dev.20161110","_shasum":"0a42c357ede83149a203b9ad227d6718ce796f57","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0a42c357ede83149a203b9ad227d6718ce796f57","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.0-dev.20161110.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.0-dev.20161110.tgz_1478761727251_0.26640002080239356"},"directories":{}},"2.0.9":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.0.9","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"3.15.1","typescript":"2.0.*"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"dcaad61583ef89b131b71c81af90b4ab0c1c9c98","_id":"typescript@2.0.9","_shasum":"b4f5fecc3f44d5c717f3b3e7c331e5bbb147a53d","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"b4f5fecc3f44d5c717f3b3e7c331e5bbb147a53d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.0.9.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.0.9.tgz_1478827360713_0.8075786849949509"},"directories":{}},"2.2.0-dev.20161111":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161111","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"4.0.0-dev.0","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ea309fe504368075781267261341d4cc83fdd917","_id":"typescript@2.2.0-dev.20161111","_shasum":"166fbbef16a4ed2751bb094c818c6d481f93c413","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"166fbbef16a4ed2751bb094c818c6d481f93c413","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161111.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161111.tgz_1478848141703_0.5502103539183736"},"directories":{}},"2.2.0-dev.20161112":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161112","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"4.0.0-dev.0","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"0e879c0bbf3edf9f5c9fda7a81b9d99f726f41b3","_id":"typescript@2.2.0-dev.20161112","_shasum":"94e32074737839e967f85640bf1661f031cf51d9","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"94e32074737839e967f85640bf1661f031cf51d9","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161112.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161112.tgz_1478934542520_0.6979609068948776"},"directories":{}},"2.2.0-dev.20161113":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161113","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tsd":"latest","tslint":"4.0.0-dev.0","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"0e879c0bbf3edf9f5c9fda7a81b9d99f726f41b3","_id":"typescript@2.2.0-dev.20161113","_shasum":"d0b7249e1231cc6217fcd7e519532e59b83f9970","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d0b7249e1231cc6217fcd7e519532e59b83f9970","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161113.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161113.tgz_1479020940703_0.49589275009930134"},"directories":{}},"2.2.0-dev.20161114":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161114","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"f437c8f3184b32c15f1bd11f73adf9ea4edf57b9","_id":"typescript@2.2.0-dev.20161114","_shasum":"9a31b8ecf0e2e144d6a8714195650b21ddd0021b","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"9a31b8ecf0e2e144d6a8714195650b21ddd0021b","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161114.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161114.tgz_1479107317444_0.27877750992774963"},"directories":{}},"2.2.0-dev.20161115":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161115","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ddf2ad4ba110f097e722cc177dacfa33f61dd7d7","_id":"typescript@2.2.0-dev.20161115","_shasum":"62a9ff8878ac32d8029c3959b33fbae900ee7173","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"62a9ff8878ac32d8029c3959b33fbae900ee7173","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161115.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161115.tgz_1479193723510_0.6717711850069463"},"directories":{}},"2.0.10":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.0.10","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"3.15.1","typescript":"2.0.*"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"790a5c7735373475505dfc98af6d87241b165ed3","_id":"typescript@2.0.10","_shasum":"ccdd4ed86fd5550a407101a0814012e1b3fac3dd","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ccdd4ed86fd5550a407101a0814012e1b3fac3dd","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.0.10.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.0.10.tgz_1479251255708_0.7381546567194164"},"directories":{}},"2.2.0-dev.20161116":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161116","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a7d97c0ecee3b4de313ec805564298c88fd6b877","_id":"typescript@2.2.0-dev.20161116","_shasum":"30be49322b4ff71bae979a334c155e61e3934e60","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"30be49322b4ff71bae979a334c155e61e3934e60","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161116.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161116.tgz_1479280153654_0.9548490364104509"},"directories":{}},"2.2.0-dev.20161117":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161117","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"52ec508e27fccd8a1d7c601918b70417086b9798","_id":"typescript@2.2.0-dev.20161117","_shasum":"302dcb24cf33604eea32f7a5699ccf12fca9bef3","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"302dcb24cf33604eea32f7a5699ccf12fca9bef3","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161117.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161117.tgz_1479366771709_0.956751512363553"},"directories":{}},"2.2.0-dev.20161118":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161118","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"9fec77551c25a0c7930f84cfd10d4d71b866268b","_id":"typescript@2.2.0-dev.20161118","_shasum":"017e95055790c2cc79fd5f96b28c8a9372d80b4f","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"017e95055790c2cc79fd5f96b28c8a9372d80b4f","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161118.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161118.tgz_1479453133017_0.346922678174451"},"directories":{}},"2.2.0-dev.20161120":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161120","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"f2a7434fa3735bb123e5818adae89271f51350cf","_id":"typescript@2.2.0-dev.20161120","_shasum":"0cb085179728f97d256475afc02046bba55accc2","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0cb085179728f97d256475afc02046bba55accc2","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161120.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161120.tgz_1479625976653_0.6373305409215391"},"directories":{}},"2.2.0-dev.20161121":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161121","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"998246af9c7cb7e116b421b83983da90ec948546","_id":"typescript@2.2.0-dev.20161121","_shasum":"3108e22686267c84d62b3c8dcfe77cee971d869c","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"3108e22686267c84d62b3c8dcfe77cee971d869c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161121.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161121.tgz_1479712388580_0.23873995756730437"},"directories":{}},"2.2.0-dev.20161122":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161122","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2d16b19ef9693f21e09bc933ee5a1709d848aaec","_id":"typescript@2.2.0-dev.20161122","_shasum":"da70f3dae1677d51d10a29079f7a2f9cab8464e1","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"da70f3dae1677d51d10a29079f7a2f9cab8464e1","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161122.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161122.tgz_1479798759363_0.20626080594956875"},"directories":{}},"2.2.0-dev.20161123":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161123","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"855431a9431a0454e7f683e5d1ba4b12b4a33f2a","_id":"typescript@2.2.0-dev.20161123","_shasum":"bdd7d9e84db2475801a03eb71303b9b629ddf8f6","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"bdd7d9e84db2475801a03eb71303b9b629ddf8f6","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161123.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161123.tgz_1479885212055_0.7795378363225609"},"directories":{}},"2.2.0-dev.20161124":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161124","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e128add54eb13192f1ec836a6623ae765fcaa758","_id":"typescript@2.2.0-dev.20161124","_shasum":"9902edafadefef09d21c65c42c4b39433fffc72d","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"9902edafadefef09d21c65c42c4b39433fffc72d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161124.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161124.tgz_1479971585031_0.39477067976258695"},"directories":{}},"2.2.0-dev.20161125":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161125","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e128add54eb13192f1ec836a6623ae765fcaa758","_id":"typescript@2.2.0-dev.20161125","_shasum":"ee8c22665933a99492231ce42c2663a456b22841","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ee8c22665933a99492231ce42c2663a456b22841","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161125.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161125.tgz_1480057976122_0.7113316936884075"},"directories":{}},"2.2.0-dev.20161126":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161126","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"5ba678a619465d1ab78c1f1c4be79448a0217587","_id":"typescript@2.2.0-dev.20161126","_shasum":"a73105db486686cb0cabb0a90e2103cad5069334","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a73105db486686cb0cabb0a90e2103cad5069334","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161126.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161126.tgz_1480144418290_0.9434746277984232"},"directories":{}},"2.2.0-dev.20161127":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161127","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"88b7d539783511aa326338f93a3b8a0c40d55d4c","_id":"typescript@2.2.0-dev.20161127","_shasum":"3da590d1a0f15da9c39d2ebeab2006fb6b4d8949","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"3da590d1a0f15da9c39d2ebeab2006fb6b4d8949","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161127.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161127.tgz_1480230803732_0.03623790247365832"},"directories":{}},"2.2.0-dev.20161128":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161128","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"88b7d539783511aa326338f93a3b8a0c40d55d4c","_id":"typescript@2.2.0-dev.20161128","_shasum":"1609ccf1268c57ba151864755cccd23d99266d68","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"1609ccf1268c57ba151864755cccd23d99266d68","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161128.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161128.tgz_1480317187122_0.8314359069336206"},"directories":{}},"2.2.0-dev.20161129":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161129","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e313fef68324c1bbd4d89d6ad868a37c4b728ee9","_id":"typescript@2.2.0-dev.20161129","_shasum":"f39bc67c5eecf5aab925504b72145be571a1e708","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f39bc67c5eecf5aab925504b72145be571a1e708","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161129.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161129.tgz_1480403567329_0.5650821782182902"},"directories":{}},"2.1.3-insiders.20161130":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.3-insiders.20161130","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"4.0.0-dev.2","typescript":"^2.1"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"501bfb53260a265f12b684fc36f2855587981b6a","_id":"typescript@2.1.3-insiders.20161130","_shasum":"551668ba383827bdf4033aa99c6c4c3f0bd80cec","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"551668ba383827bdf4033aa99c6c4c3f0bd80cec","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.3-insiders.20161130.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.3-insiders.20161130.tgz_1480469442801_0.6932965891901404"},"directories":{}},"2.2.0-dev.20161130":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161130","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"4c9bdb932af4f04f4455848c80280f2c7e8da613","_id":"typescript@2.2.0-dev.20161130","_shasum":"d8c132bbf89714b744c09e348a33e02488afee24","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d8c132bbf89714b744c09e348a33e02488afee24","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161130.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161130.tgz_1480489974965_0.9337933983188123"},"directories":{}},"2.2.0-dev.20161201":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161201","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"fc1f6e3ee6acea2176488a120999f4d2b0f48825","_id":"typescript@2.2.0-dev.20161201","_shasum":"14b7a5b09d591aaf91ebabac27fac44830bcc6c4","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"14b7a5b09d591aaf91ebabac27fac44830bcc6c4","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161201.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161201.tgz_1480576319686_0.08125246106646955"},"directories":{}},"2.1.4-insiders.20161201":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.4-insiders.20161201","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"4.0.0-dev.2","typescript":"^2.1"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a9621760b3dec02f36bebba4bbd28bf615bf68c9","_id":"typescript@2.1.4-insiders.20161201","_shasum":"c184e100495604f3e646981f14f06392b2186e50","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"c184e100495604f3e646981f14f06392b2186e50","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.4-insiders.20161201.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.4-insiders.20161201.tgz_1480625328124_0.9393948612269014"},"directories":{}},"2.2.0-dev.20161202":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161202","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"efe7b65fa6846154bfd0e42184762df490fb8068","_id":"typescript@2.2.0-dev.20161202","_shasum":"c4ccc0c8e6f0bd25405d12f96aff4e01ffb892a2","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"c4ccc0c8e6f0bd25405d12f96aff4e01ffb892a2","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161202.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161202.tgz_1480662739336_0.5403089607134461"},"directories":{}},"2.2.0-dev.20161203":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161203","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a230cb7e772970b38c51d1f506243b23b98ebcb0","_id":"typescript@2.2.0-dev.20161203","_shasum":"fc7ebfee8a68a15c5e2762c1d072c76e1e00100d","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"fc7ebfee8a68a15c5e2762c1d072c76e1e00100d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161203.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161203.tgz_1480749138960_0.1989189174491912"},"directories":{}},"2.2.0-dev.20161204":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161204","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"f61a22478ad34a560c8cd1fa8f72ae0a2407ced6","_id":"typescript@2.2.0-dev.20161204","_shasum":"74774de05d27467626559dba4f37e383c475bbc5","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"74774de05d27467626559dba4f37e383c475bbc5","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161204.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161204.tgz_1480835549285_0.4754345240071416"},"directories":{}},"2.2.0-dev.20161205":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161205","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"b7e8a6d1f163a50e9a73716e267abbb5996ffbbc","_id":"typescript@2.2.0-dev.20161205","_shasum":"5d03250ff4acbfddd641129eb97098156f11f1a9","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5d03250ff4acbfddd641129eb97098156f11f1a9","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161205.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161205.tgz_1480921957812_0.9915765910409391"},"directories":{}},"2.1.4-insiders.20161206":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.4-insiders.20161206","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"4.0.0-dev.2","typescript":"^2.1"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"409311f3634afdcf0423670661758fe9e7c87a99","_id":"typescript@2.1.4-insiders.20161206","_shasum":"9f816358519f4f40d6d35d0220085e77afd979cb","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"9f816358519f4f40d6d35d0220085e77afd979cb","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.4-insiders.20161206.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.4-insiders.20161206.tgz_1480991715921_0.3231662584003061"},"directories":{}},"2.2.0-dev.20161206":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161206","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"225d6d6aef11484708e319940f148b89edfb6323","_id":"typescript@2.2.0-dev.20161206","_shasum":"12afecd7146249a84c1b06338c9cda29261fd00d","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"12afecd7146249a84c1b06338c9cda29261fd00d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161206.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161206.tgz_1481008354576_0.23662444949150085"},"directories":{}},"2.2.0-dev.20161207":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161207","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c1ec7eff08f3d98f3310be885d1a1a01e7e6eeb6","_id":"typescript@2.2.0-dev.20161207","_shasum":"0b9cc8e95c1adc2dd91bb4fff303e573b9f2a650","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0b9cc8e95c1adc2dd91bb4fff303e573b9f2a650","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161207.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161207.tgz_1481094792932_0.09472501534037292"},"directories":{}},"2.1.4":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.4","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"4.0.0-dev.2","typescript":"^2.1"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"409311f3634afdcf0423670661758fe9e7c87a99","_id":"typescript@2.1.4","_shasum":"b53b69fb841126acb1dd4b397d21daba87572251","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"b53b69fb841126acb1dd4b397d21daba87572251","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.4.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.4.tgz_1481130051247_0.27785680117085576"},"directories":{}},"2.2.0-dev.20161208":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161208","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"91f0194e6aee5b7a612b84bef2f8b25a069423d9","_id":"typescript@2.2.0-dev.20161208","_shasum":"241592b53a6ff814f1316edaba7629178eeac192","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"241592b53a6ff814f1316edaba7629178eeac192","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161208.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161208.tgz_1481181198783_0.3199639576487243"},"directories":{}},"2.2.0-dev.20161209":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161209","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"7da338350406f60e9bb26ea0ad0ee8d97e12fd4e","_id":"typescript@2.2.0-dev.20161209","_shasum":"fbaa0dd50ca145f2eb659c9d0fab3ac833761315","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"fbaa0dd50ca145f2eb659c9d0fab3ac833761315","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161209.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161209.tgz_1481267581150_0.05701764393597841"},"directories":{}},"2.2.0-dev.20161210":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161210","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"f27fe0d7814676b23062668556ba4be0b15ffec9","_id":"typescript@2.2.0-dev.20161210","_shasum":"9bfa2186c9fd8976f7fb54aa74aa3fe65b3f5e2d","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"9bfa2186c9fd8976f7fb54aa74aa3fe65b3f5e2d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161210.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161210.tgz_1481353962537_0.0605899952352047"},"directories":{}},"2.2.0-dev.20161211":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161211","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"7c5c664a1cca6d24e0aaefdb76f450cf4237f59f","_id":"typescript@2.2.0-dev.20161211","_shasum":"aae660106b16945abf6bbb6d74a007205f92cd0a","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"aae660106b16945abf6bbb6d74a007205f92cd0a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161211.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161211.tgz_1481440362863_0.16706183273345232"},"directories":{}},"2.2.0-dev.20161212":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161212","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":">=0.8.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"7c5c664a1cca6d24e0aaefdb76f450cf4237f59f","_id":"typescript@2.2.0-dev.20161212","_shasum":"97c6561f6e95b9b1402b733e0e106079dcf99a7f","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"97c6561f6e95b9b1402b733e0e106079dcf99a7f","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161212.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161212.tgz_1481526763835_0.888421154115349"},"directories":{}},"2.2.0-dev.20161213":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161213","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c76a3a6feff5bc0bdf10b304373453fd295aa1ca","_id":"typescript@2.2.0-dev.20161213","_shasum":"dbd806dae796b46ec5918dcb619ea0119f74687e","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"dbd806dae796b46ec5918dcb619ea0119f74687e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161213.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161213.tgz_1481613148027_0.8980310650076717"},"directories":{}},"2.1.5-insiders.20161213":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.5-insiders.20161213","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"4.0.0-dev.2","typescript":"^2.1"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a6decf98bffabcfb50f928ce10f00ea9e2d66206","_id":"typescript@2.1.5-insiders.20161213","_shasum":"a4ff2d04205c1595879a577e1daa2d26292713a5","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a4ff2d04205c1595879a577e1daa2d26292713a5","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.5-insiders.20161213.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.5-insiders.20161213.tgz_1481672577351_0.33862460241653025"},"directories":{}},"2.2.0-dev.20161214":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161214","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"8f4cefe4fd68c6fcdf312506f20e36ea5edc8cea","_id":"typescript@2.2.0-dev.20161214","_shasum":"50da518d9bcacdef84766f251d7834d846959197","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"50da518d9bcacdef84766f251d7834d846959197","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161214.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161214.tgz_1481699626689_0.2389619799796492"},"directories":{}},"2.2.0-dev.20161215":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161215","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"366dfc052f5c1104e2b5cdfdb44c1de581093120","_id":"typescript@2.2.0-dev.20161215","_shasum":"574d53d5a842e0cf18e5d8f81409a898d378bba1","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"574d53d5a842e0cf18e5d8f81409a898d378bba1","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161215.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161215.tgz_1481785995378_0.7674646461382508"},"directories":{}},"2.2.0-dev.20161216":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161216","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"0f78f537800582efb2e0f20b3a8e498302161ad9","_id":"typescript@2.2.0-dev.20161216","_shasum":"21715a1cdf9335a4b112efbf27b05799421e048a","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"21715a1cdf9335a4b112efbf27b05799421e048a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161216.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161216.tgz_1481872419118_0.02583544421941042"},"directories":{}},"2.2.0-dev.20161217":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161217","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"0f78f537800582efb2e0f20b3a8e498302161ad9","_id":"typescript@2.2.0-dev.20161217","_shasum":"d78cb0bb4085ba29263f23f110ab20a31cadcf8c","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d78cb0bb4085ba29263f23f110ab20a31cadcf8c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161217.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161217.tgz_1481958726052_0.6019192733801901"},"directories":{}},"2.2.0-dev.20161218":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161218","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"0f78f537800582efb2e0f20b3a8e498302161ad9","_id":"typescript@2.2.0-dev.20161218","_shasum":"f94c333e6171dd0cdac8ec5d2e988a8f32072ec0","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f94c333e6171dd0cdac8ec5d2e988a8f32072ec0","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161218.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161218.tgz_1482045175678_0.21156570361927152"},"directories":{}},"2.2.0-dev.20161219":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161219","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"0f78f537800582efb2e0f20b3a8e498302161ad9","_id":"typescript@2.2.0-dev.20161219","_shasum":"651c3a97a2ece104f1d45b7d9f9f5585784be7c7","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"651c3a97a2ece104f1d45b7d9f9f5585784be7c7","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161219.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161219.tgz_1482131578949_0.17140014516189694"},"directories":{}},"2.2.0-dev.20161220":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161220","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"4.0.0-dev.3","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"8ae0376e75e4429c57a61e54ddbd5718fba1c0ae","_id":"typescript@2.2.0-dev.20161220","_shasum":"c43cce2d7fdbaeb99bddaf148a9c8efda269da3a","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"c43cce2d7fdbaeb99bddaf148a9c8efda269da3a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161220.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161220.tgz_1482217955822_0.894822426373139"},"directories":{}},"2.1.5-insiders.20161220":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.5-insiders.20161220","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"4.0.0-dev.3","typescript":"^2.1"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e7668b0954a5e43d4bfd578ec93b52f1d1b0f157","_id":"typescript@2.1.5-insiders.20161220","_shasum":"a0916b27ffcb45137d227b1af1c687b1d6edcdf6","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a0916b27ffcb45137d227b1af1c687b1d6edcdf6","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.5-insiders.20161220.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.5-insiders.20161220.tgz_1482281809930_0.2728759376332164"},"directories":{}},"2.2.0-dev.20161221":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161221","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"4.0.0-dev.3","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"1045f3bffb5dd7d5cddd40de22eeda08d8cb95c6","_id":"typescript@2.2.0-dev.20161221","_shasum":"cfe8234a1069df7dd26c958a6e3dc050b9ca3baf","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"cfe8234a1069df7dd26c958a6e3dc050b9ca3baf","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161221.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161221.tgz_1482304413176_0.8108997775707394"},"directories":{}},"2.2.0-dev.20161222":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161222","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"4.0.0-dev.3","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c563e83c992c487b74887acbddc6100192e7b936","_id":"typescript@2.2.0-dev.20161222","_shasum":"8b9557b1acf43a3a589aa5a159ff649fae890264","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8b9557b1acf43a3a589aa5a159ff649fae890264","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161222.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161222.tgz_1482390791917_0.42031432525254786"},"directories":{}},"2.2.0-dev.20161223":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161223","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"4.0.0-dev.3","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"20097d7961de7b7b1924bf8b05a92e5a405fcf85","_id":"typescript@2.2.0-dev.20161223","_shasum":"77327613489667adbb1f7094f1dd002dfcdc4ac4","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"77327613489667adbb1f7094f1dd002dfcdc4ac4","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161223.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161223.tgz_1482477265351_0.9342312722001225"},"directories":{}},"2.2.0-dev.20161224":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161224","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"4.0.0-dev.3","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"20097d7961de7b7b1924bf8b05a92e5a405fcf85","_id":"typescript@2.2.0-dev.20161224","_shasum":"d0ab7b01eb517bd4dad4a93aa027e806cca611a7","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d0ab7b01eb517bd4dad4a93aa027e806cca611a7","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161224.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161224.tgz_1482563632028_0.6224180145654827"},"directories":{}},"2.2.0-dev.20161225":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161225","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"4.0.0-dev.3","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"20097d7961de7b7b1924bf8b05a92e5a405fcf85","_id":"typescript@2.2.0-dev.20161225","_shasum":"97d3a1fbb5317bf596f464730cca69cdba48040c","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"97d3a1fbb5317bf596f464730cca69cdba48040c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161225.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161225.tgz_1482650056742_0.2672628532163799"},"directories":{}},"2.2.0-dev.20161226":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161226","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"4.0.0-dev.3","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"20097d7961de7b7b1924bf8b05a92e5a405fcf85","_id":"typescript@2.2.0-dev.20161226","_shasum":"d459d1ec60ece941c38e87d62e806f20ecef0fa7","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d459d1ec60ece941c38e87d62e806f20ecef0fa7","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161226.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161226.tgz_1482736392971_0.7695751842111349"},"directories":{}},"2.2.0-dev.20161227":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161227","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"f0ad56d86eec4f95270c0f9a93df116623beeadf","_id":"typescript@2.2.0-dev.20161227","_shasum":"c02a4d0656762ca1b8100df03cd42b54374e390b","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"c02a4d0656762ca1b8100df03cd42b54374e390b","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161227.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161227.tgz_1482822785257_0.039209105307236314"},"directories":{}},"2.2.0-dev.20161228":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161228","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"b82fe52ca4e8eb3380fdba97b1c99cbaba9ec6a3","_id":"typescript@2.2.0-dev.20161228","_shasum":"da6b4efb374d6003bd253ed91f8ebb893e8af3b5","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"da6b4efb374d6003bd253ed91f8ebb893e8af3b5","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161228.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161228.tgz_1482909238713_0.26161810476332903"},"directories":{}},"2.2.0-dev.20161229":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161229","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"69e0677ea1630daec111b5129aae609809d511e9","_id":"typescript@2.2.0-dev.20161229","_shasum":"42b45664623455fc138f6d470291d639310efb97","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"42b45664623455fc138f6d470291d639310efb97","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161229.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161229.tgz_1482995544909_0.3763244494330138"},"directories":{}},"2.1.5-insiders.20161229":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.5-insiders.20161229","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"4.0.0-dev.3","typescript":"^2.1"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"32cec588ff26dd563d806d982dc6e0da436cfcb2","_id":"typescript@2.1.5-insiders.20161229","_shasum":"fa0ef18f53a4ff748c0f378bc79b22abd047488e","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"fa0ef18f53a4ff748c0f378bc79b22abd047488e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.5-insiders.20161229.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.5-insiders.20161229.tgz_1483043343767_0.0900745433755219"},"directories":{}},"2.2.0-dev.20161230":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161230","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"69e0677ea1630daec111b5129aae609809d511e9","_id":"typescript@2.2.0-dev.20161230","_shasum":"e65873e2f09694d4e8219e93fb1502a2076c383a","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e65873e2f09694d4e8219e93fb1502a2076c383a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161230.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161230.tgz_1483082010772_0.4904611848760396"},"directories":{}},"2.2.0-dev.20161231":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20161231","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"524fa64c8d5fcbd767db383a5fbf0edef4be6363","_id":"typescript@2.2.0-dev.20161231","_shasum":"4c864e06d0f02f0f4ac508182128d1f181727aed","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4c864e06d0f02f0f4ac508182128d1f181727aed","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20161231.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20161231.tgz_1483168367075_0.6248227499891073"},"directories":{}},"2.2.0-dev.20170101":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170101","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"88c68256e62a1b1b287c5f170d8d1549124ec611","_id":"typescript@2.2.0-dev.20170101","_shasum":"28a941bfd5a114241d4c9025a8d1cde541efcd3b","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"28a941bfd5a114241d4c9025a8d1cde541efcd3b","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170101.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170101.tgz_1483254790937_0.44726586574688554"},"directories":{}},"2.2.0-dev.20170102":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170102","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"88c68256e62a1b1b287c5f170d8d1549124ec611","_id":"typescript@2.2.0-dev.20170102","_shasum":"4f4728112cdf748b6b4b96bf4a1499f956e17300","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4f4728112cdf748b6b4b96bf4a1499f956e17300","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170102.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170102.tgz_1483341194205_0.6682365364395082"},"directories":{}},"2.2.0-dev.20170103":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170103","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"88c68256e62a1b1b287c5f170d8d1549124ec611","_id":"typescript@2.2.0-dev.20170103","_shasum":"0a67020f9b01ca6f97c4f08fc007d314dda1d701","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0a67020f9b01ca6f97c4f08fc007d314dda1d701","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170103.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170103.tgz_1483427581458_0.8395918915048242"},"directories":{}},"2.2.0-dev.20170104":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170104","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"abc9b0dc36515608a86de6574452f2b90e579014","_id":"typescript@2.2.0-dev.20170104","_shasum":"b89abec833ae38f7d9feabf3484c41fe91634174","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"b89abec833ae38f7d9feabf3484c41fe91634174","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170104.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170104.tgz_1483513973310_0.18742245412431657"},"directories":{}},"2.2.0-dev.20170105":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170105","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"58ad85a2747d00cea381187b3ce0290dd6fc4609","_id":"typescript@2.2.0-dev.20170105","_shasum":"43e93d2c506788764333cca13caca53a9c7f8405","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"43e93d2c506788764333cca13caca53a9c7f8405","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170105.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170105.tgz_1483600366198_0.723907069535926"},"directories":{}},"2.2.0-dev.20170106":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170106","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"91af4ae6b3f797eb7911963c22e800f5b96d96ec","_id":"typescript@2.2.0-dev.20170106","_shasum":"cb6b3d95a0faa2b0898cffcfa96e69336679d058","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"cb6b3d95a0faa2b0898cffcfa96e69336679d058","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170106.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170106.tgz_1483686720437_0.23857056605629623"},"directories":{}},"2.2.0-dev.20170107":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170107","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"5b075ff924083d3891e3d34bfe2b4a8b4949665c","_id":"typescript@2.2.0-dev.20170107","_shasum":"d80d9d3fc8a6a97e88a425c9d42d213e071f9a4c","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d80d9d3fc8a6a97e88a425c9d42d213e071f9a4c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170107.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170107.tgz_1483773218011_0.5047358772717416"},"directories":{}},"2.2.0-dev.20170108":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170108","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"5b075ff924083d3891e3d34bfe2b4a8b4949665c","_id":"typescript@2.2.0-dev.20170108","_shasum":"4e5c3611c32695d13b2978db1d9e16e410ea9ee8","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4e5c3611c32695d13b2978db1d9e16e410ea9ee8","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170108.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170108.tgz_1483859636709_0.8535481714643538"},"directories":{}},"2.2.0-dev.20170109":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170109","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"5b075ff924083d3891e3d34bfe2b4a8b4949665c","_id":"typescript@2.2.0-dev.20170109","_shasum":"497f56de9b678629503e017c1524f2534d1ad298","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"497f56de9b678629503e017c1524f2534d1ad298","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170109.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170109.tgz_1483945996990_0.2822617399506271"},"directories":{}},"2.2.0-dev.20170110":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170110","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"46938e0c1f2807b1bb7eca6b76052660328d372e","_id":"typescript@2.2.0-dev.20170110","_shasum":"19b166d88e8574286cc1ea2767fa6cf35a61567c","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"19b166d88e8574286cc1ea2767fa6cf35a61567c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170110.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170110.tgz_1484032445056_0.44486652011983097"},"directories":{}},"2.2.0-dev.20170111":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170111","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"5e6c5ef2f07dfa343434a88bc18efc805a693c9d","_id":"typescript@2.2.0-dev.20170111","_shasum":"3c7d5d598287fc5b47060f229ededfc68ede7058","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"3c7d5d598287fc5b47060f229ededfc68ede7058","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170111.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170111.tgz_1484118774394_0.0945057647768408"},"directories":{}},"2.1.5":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.5","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"4.0.0-dev.3","typescript":"^2.1"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2dbc531cf4cd8758dc0c94465d874d1013d3c5a4","_id":"typescript@2.1.5","_shasum":"6fe9479e00e01855247cea216e7561bafcdbcd4a","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"6fe9479e00e01855247cea216e7561bafcdbcd4a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.5.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.1.5.tgz_1484179264972_0.1603098378982395"},"directories":{}},"2.2.0-dev.20170112":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170112","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"04da7074f9c7b7fe9bb5a8db1b2d845b9344bfe5","_id":"typescript@2.2.0-dev.20170112","_shasum":"d1cd3481ea7e99a6c3aef81e6daf53326f533bb9","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d1cd3481ea7e99a6c3aef81e6daf53326f533bb9","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170112.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170112.tgz_1484205187777_0.17803838895633817"},"directories":{}},"2.2.0-dev.20170113":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170113","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2711303539dd9af4f0396aa17497e75b5b44f90d","_id":"typescript@2.2.0-dev.20170113","_shasum":"aad3c1cb95c040e63c51a103a834964fccf409f5","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"aad3c1cb95c040e63c51a103a834964fccf409f5","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170113.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170113.tgz_1484291557944_0.823063746560365"},"directories":{}},"2.2.0-dev.20170114":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170114","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d86d85021128ddd45c9347b5bc8e222ece317d6f","_id":"typescript@2.2.0-dev.20170114","_shasum":"cbff198a27561dbaa3c4d85a63d05c2277d8b5de","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"cbff198a27561dbaa3c4d85a63d05c2277d8b5de","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170114.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170114.tgz_1484377977031_0.4164725127629936"},"directories":{}},"2.2.0-dev.20170115":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170115","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c320c884d6f8422dc0bebb0e80d276379e5d5b88","_id":"typescript@2.2.0-dev.20170115","_shasum":"94e92f177079bc7022ab00e700a2270892268bc4","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"94e92f177079bc7022ab00e700a2270892268bc4","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170115.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170115.tgz_1484464356106_0.6945959134027362"},"directories":{}},"2.2.0-dev.20170116":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170116","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e254a09d6ea840672617d63216374287a5779277","_id":"typescript@2.2.0-dev.20170116","_shasum":"768943f755a92760cdcfa5d3860805fae62f5b1d","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"768943f755a92760cdcfa5d3860805fae62f5b1d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170116.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170116.tgz_1484550747556_0.18172956677153707"},"directories":{}},"2.2.0-dev.20170117":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170117","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d6fde0c07fcffce6602195313f119bd8e35ba777","_id":"typescript@2.2.0-dev.20170117","_shasum":"6e8f0a306c3b6d26901321333ba9a7a301150379","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"6e8f0a306c3b6d26901321333ba9a7a301150379","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170117.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170117.tgz_1484637159341_0.1085028750821948"},"directories":{}},"2.2.0-dev.20170118":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170118","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"381960f9eab5c37825f939c42bf375ca61d5b67d","_id":"typescript@2.2.0-dev.20170118","_shasum":"f61747a04c71996d8dfc85cdc5c1f45e6e3f9a55","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f61747a04c71996d8dfc85cdc5c1f45e6e3f9a55","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170118.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170118.tgz_1484723582415_0.04217548295855522"},"directories":{}},"2.2.0-dev.20170119":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170119","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2c48e26f191f73e1a2394ec062df4b7111f97d46","_id":"typescript@2.2.0-dev.20170119","_shasum":"3c0c7657f784ddecf9acd30c415ed665523a77af","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"3c0c7657f784ddecf9acd30c415ed665523a77af","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170119.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170119.tgz_1484809905487_0.3045387309975922"},"directories":{}},"2.2.0-dev.20170120":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170120","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"0a535f0bf7193741e6b4acf5b7dfea88e2d4beca","_id":"typescript@2.2.0-dev.20170120","_shasum":"4729ced2532dfdebc170cbbbc9ea3fb57fa5181f","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4729ced2532dfdebc170cbbbc9ea3fb57fa5181f","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170120.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170120.tgz_1484896341305_0.11423544608987868"},"directories":{}},"2.2.0-dev.20170121":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170121","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"4ee8213dde3a08b29d3add176cae92bdb20c5415","_id":"typescript@2.2.0-dev.20170121","_shasum":"ceda8c8127a0307531d76862b012a2bd918a7f0d","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ceda8c8127a0307531d76862b012a2bd918a7f0d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170121.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170121.tgz_1484982732591_0.99959297478199"},"directories":{}},"2.2.0-dev.20170122":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170122","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"5b9004e1bc24d2bb53de1dd04ba042ed69da45f4","_id":"typescript@2.2.0-dev.20170122","_shasum":"e46aa6050f1af2a37df4eb41304991ded1f4f2c4","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e46aa6050f1af2a37df4eb41304991ded1f4f2c4","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170122.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170122.tgz_1485069121751_0.15194945689290762"},"directories":{}},"2.2.0-dev.20170123":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170123","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"3cf326a8c4e968532cc4cc063fbaea0ed253f335","_id":"typescript@2.2.0-dev.20170123","_shasum":"b9d798e096a31c1ed5d27ea30b1224d3c077e808","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"b9d798e096a31c1ed5d27ea30b1224d3c077e808","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170123.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170123.tgz_1485155499897_0.22202752716839314"},"directories":{}},"2.2.0-dev.20170124":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170124","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"f6ee80c675343d873d5f9d53f9e4ca1f25d3d5ef","_id":"typescript@2.2.0-dev.20170124","_shasum":"56de2ede0427292bdbee86f6863abe6ec8f7efcd","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"56de2ede0427292bdbee86f6863abe6ec8f7efcd","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170124.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170124.tgz_1485241917745_0.6177540123462677"},"directories":{}},"2.2.0-dev.20170125":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170125","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"8144c89c9c63ce1bf90adbb35f366fe2ae821c1f","_id":"typescript@2.2.0-dev.20170125","_shasum":"a0d0cf4ee24405b85e53dbea3e59cd71bd5ae4de","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a0d0cf4ee24405b85e53dbea3e59cd71bd5ae4de","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170125.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170125.tgz_1485328328282_0.31463755993172526"},"directories":{}},"2.2.0-dev.20170126":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170126","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"feb08b8b43b715653d20a34c75a882d75fa3ff94","_id":"typescript@2.2.0-dev.20170126","_shasum":"422ce13f80582465f398d1f2bc7fecc90b89cc99","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"422ce13f80582465f398d1f2bc7fecc90b89cc99","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170126.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170126.tgz_1485414735932_0.8313646414317191"},"directories":{}},"2.2.0-dev.20170127":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170127","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"64dd8065aa2292f46629f6ed976e42ec852d4189","_id":"typescript@2.2.0-dev.20170127","_shasum":"94191ea34e6f53d64a4d0291cc76f7c14417dd54","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"94191ea34e6f53d64a4d0291cc76f7c14417dd54","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170127.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170127.tgz_1485501122464_0.3802980538457632"},"directories":{}},"2.2.0-dev.20170128":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170128","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"aeeff28fd6e7a6b599f8eff084008ac9bdc36d03","_id":"typescript@2.2.0-dev.20170128","_shasum":"5ec0e9bb023a53998281f2372d90f4db058e4949","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5ec0e9bb023a53998281f2372d90f4db058e4949","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170128.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170128.tgz_1485587546324_0.4883508156053722"},"directories":{}},"2.2.0-dev.20170129":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170129","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"aeeff28fd6e7a6b599f8eff084008ac9bdc36d03","_id":"typescript@2.2.0-dev.20170129","_shasum":"e36f7e51ef1d6d9c783540b41b81da258666d0ca","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e36f7e51ef1d6d9c783540b41b81da258666d0ca","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170129.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170129.tgz_1485673922008_0.8512706779874861"},"directories":{}},"2.2.0-dev.20170130":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170130","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"aeeff28fd6e7a6b599f8eff084008ac9bdc36d03","_id":"typescript@2.2.0-dev.20170130","_shasum":"93f4a216242395fd43ac4684c6d7531440a155a5","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"93f4a216242395fd43ac4684c6d7531440a155a5","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170130.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170130.tgz_1485760318339_0.5075052718166262"},"directories":{}},"2.2.0-dev.20170131":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170131","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"445421b68b23a3fcb1a64d9541f31b5e0131ed34","_id":"typescript@2.2.0-dev.20170131","_shasum":"e2c68c5379d94c7970a8a037b97d9910024a487f","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e2c68c5379d94c7970a8a037b97d9910024a487f","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170131.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170131.tgz_1485846742698_0.8980157203041017"},"directories":{}},"2.2.0-dev.20170201":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170201","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"cf20850e79c5bd2b89a1bc486bf2421fff2ec3be","_id":"typescript@2.2.0-dev.20170201","_shasum":"3d66dbb15f2f52e4464ca571179c607140cd86f9","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"3d66dbb15f2f52e4464ca571179c607140cd86f9","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170201.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170201.tgz_1485933127689_0.10152681241743267"},"directories":{}},"2.2.0-dev.20170202":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170202","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"1f92bacdc81e7ae6706ad8776121e1db986a8b27","_id":"typescript@2.2.0-dev.20170202","_shasum":"3a2d9d7506592aea2c9ed461603473f8dd5a15a1","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"3a2d9d7506592aea2c9ed461603473f8dd5a15a1","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170202.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170202.tgz_1486019575162_0.6554185508284718"},"directories":{}},"2.2.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"adedc1953b9a1136b5067f5224a3b4e7cd5b8956","_id":"typescript@2.2.0","_shasum":"626f2fc70087d2480f21ebb12c1888288c8614e3","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"626f2fc70087d2480f21ebb12c1888288c8614e3","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0.tgz_1486061390712_0.39234997518360615"},"directories":{}},"2.2.0-dev.20170203":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170203","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"df643d8d02cc91993fde3d2a801817b78ecaa504","_id":"typescript@2.2.0-dev.20170203","_shasum":"1c31f75ba7a7939596bd756d612c9916c805098f","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"1c31f75ba7a7939596bd756d612c9916c805098f","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170203.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170203.tgz_1486105980243_0.9502690832596272"},"directories":{}},"2.2.0-dev.20170204":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170204","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"501084a93c5dec70da02d2dad1d16d5f84cd3b7e","_id":"typescript@2.2.0-dev.20170204","_shasum":"eb6e934c515862961262ca30e9d0580d7c3dace4","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"eb6e934c515862961262ca30e9d0580d7c3dace4","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170204.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170204.tgz_1486192380815_0.8688694909214973"},"directories":{}},"2.2.0-dev.20170205":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170205","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"501084a93c5dec70da02d2dad1d16d5f84cd3b7e","_id":"typescript@2.2.0-dev.20170205","_shasum":"7a1bd15f57c2e772574adb53da0c49e4f3474701","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"7a1bd15f57c2e772574adb53da0c49e4f3474701","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170205.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170205.tgz_1486278810775_0.738462820649147"},"directories":{}},"2.2.0-dev.20170206":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170206","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"501084a93c5dec70da02d2dad1d16d5f84cd3b7e","_id":"typescript@2.2.0-dev.20170206","_shasum":"b2142f31b8b99bb7a04c558b96f47de87749d7b3","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"b2142f31b8b99bb7a04c558b96f47de87749d7b3","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170206.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170206.tgz_1486365153475_0.25099812215194106"},"directories":{}},"2.2.0-dev.20170207":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170207","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"955b10edf9893b3c471b6d882ff0132dd8d6fbd3","_id":"typescript@2.2.0-dev.20170207","_shasum":"d315d5236a1639db2c727107c1308e257b25b552","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d315d5236a1639db2c727107c1308e257b25b552","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170207.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170207.tgz_1486451596704_0.9667003168724477"},"directories":{}},"2.1.6":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.1.6","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"4.0.0-dev.3","typescript":"^2.1"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"496e7ab55937c699ffd449960876a1285a7b5cbf","_id":"typescript@2.1.6","_shasum":"40c7e6e9e5da7961b7718b55505f9cac9487a607","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"40c7e6e9e5da7961b7718b55505f9cac9487a607","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.1.6.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.1.6.tgz_1486595501310_0.9944379008375108"},"directories":{}},"2.2.0-dev.20170209":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170209","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"de71002c8ea9bf5f70f33c6f0465b548077fc0cc","_id":"typescript@2.2.0-dev.20170209","_shasum":"5e7ce5998a742560be871a5397163b40f7918843","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5e7ce5998a742560be871a5397163b40f7918843","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170209.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170209.tgz_1486624420728_0.42641089321114123"},"directories":{}},"2.2.1-insiders.20170209":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.1-insiders.20170209","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"4.3.0-dev.0","typescript":"^2.2"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d2e28809b1eeade6be1842f963d56ba8393d892c","_id":"typescript@2.2.1-insiders.20170209","_shasum":"1ebe5928668b3c98dd5c6e0d7cfcab7513204422","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"1ebe5928668b3c98dd5c6e0d7cfcab7513204422","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.1-insiders.20170209.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.1-insiders.20170209.tgz_1486680244454_0.8263627483975142"},"directories":{}},"2.2.0-dev.20170210":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170210","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2fc634f46048bb00f1cf27a798761fd70f269ec1","_id":"typescript@2.2.0-dev.20170210","_shasum":"a2977fb63b349434e24945779d3927e20f7dac30","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a2977fb63b349434e24945779d3927e20f7dac30","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170210.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170210.tgz_1486710750301_0.0810329255182296"},"directories":{}},"2.2.0-dev.20170211":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170211","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2fc634f46048bb00f1cf27a798761fd70f269ec1","_id":"typescript@2.2.0-dev.20170211","_shasum":"f25f254d22379d7174692f4337f667998742b4f0","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f25f254d22379d7174692f4337f667998742b4f0","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170211.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170211.tgz_1486797220530_0.29570633405819535"},"directories":{}},"2.2.0-dev.20170212":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170212","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2fc634f46048bb00f1cf27a798761fd70f269ec1","_id":"typescript@2.2.0-dev.20170212","_shasum":"86e333268b5ca7831f69004a00c22e3636f72f23","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"86e333268b5ca7831f69004a00c22e3636f72f23","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170212.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170212.tgz_1486883612578_0.7773494201246649"},"directories":{}},"2.2.0-dev.20170213":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170213","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2fc634f46048bb00f1cf27a798761fd70f269ec1","_id":"typescript@2.2.0-dev.20170213","_shasum":"670305acc0b84cf027540da44012096b67ba8522","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"670305acc0b84cf027540da44012096b67ba8522","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170213.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170213.tgz_1486970011393_0.16446392936632037"},"directories":{}},"2.2.0-dev.20170214":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.0-dev.20170214","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"f673f48fad7eaff4dadb09e90d42a321c072a3b0","_id":"typescript@2.2.0-dev.20170214","_shasum":"21270c32330487af0c81575ed846e78467a0688a","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"21270c32330487af0c81575ed846e78467a0688a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.0-dev.20170214.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.0-dev.20170214.tgz_1487056448710_0.6919095281045884"},"directories":{}},"2.3.0-dev.20170215":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170215","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"9be853fb8ffb312c42b5c736c0e8d19d367333bd","_id":"typescript@2.3.0-dev.20170215","_shasum":"ce51c674741a2320062b433279cccb3242de7d35","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ce51c674741a2320062b433279cccb3242de7d35","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170215.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170215.tgz_1487142822847_0.9743815443944186"},"directories":{}},"2.3.0-dev.20170216":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170216","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"593ee683b91c716d6fd5afaec10370c7b4d01879","_id":"typescript@2.3.0-dev.20170216","_shasum":"24b2d229c84c38f6d6d167112c64dc4dd0d49618","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"24b2d229c84c38f6d6d167112c64dc4dd0d49618","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170216.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170216.tgz_1487229168523_0.8742075513582677"},"directories":{}},"2.2.1-insiders.20170216":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.1-insiders.20170216","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"4.3.0-dev.0","typescript":"^2.2"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"510b384e26a7966e122995d0d60506c742f0be3b","_id":"typescript@2.2.1-insiders.20170216","_shasum":"d738e909e9fdbbb454178ac0f96fb88496628b19","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d738e909e9fdbbb454178ac0f96fb88496628b19","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.1-insiders.20170216.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.1-insiders.20170216.tgz_1487276607312_0.844479345716536"},"directories":{}},"2.3.0-dev.20170217":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170217","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ef25b25c1fb64602f99a6278f24d42c1b6d53d90","_id":"typescript@2.3.0-dev.20170217","_shasum":"92bf04d972a1d130169c1667fddc58a59d9d516c","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"92bf04d972a1d130169c1667fddc58a59d9d516c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170217.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170217.tgz_1487318050221_0.6788658662699163"},"directories":{}},"2.2.1-insiders.20170217":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.1-insiders.20170217","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"4.3.0-dev.0","typescript":"^2.2"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a29e8cf2406dd41aea48be0fb68cde6a2e972564","_id":"typescript@2.2.1-insiders.20170217","_shasum":"4c4dc2537248fd5942e1f971be9a8d250c8e14ca","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4c4dc2537248fd5942e1f971be9a8d250c8e14ca","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.1-insiders.20170217.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.1-insiders.20170217.tgz_1487381656311_0.45682990783825517"},"directories":{}},"2.3.0-dev.20170218":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170218","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2d62245607916af9056c222d1a082b3efc347282","_id":"typescript@2.3.0-dev.20170218","_shasum":"97f737636b9dbd4bbc552941e75b968f03cefdc4","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"97f737636b9dbd4bbc552941e75b968f03cefdc4","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170218.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170218.tgz_1487402020130_0.6244159613270313"},"directories":{}},"2.3.0-dev.20170219":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170219","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2d62245607916af9056c222d1a082b3efc347282","_id":"typescript@2.3.0-dev.20170219","_shasum":"2ff5f00d0ac017bd2aa398fe98a68d45944bb5fc","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"2ff5f00d0ac017bd2aa398fe98a68d45944bb5fc","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170219.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170219.tgz_1487488363817_0.9817882874049246"},"directories":{}},"2.3.0-dev.20170220":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170220","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2d62245607916af9056c222d1a082b3efc347282","_id":"typescript@2.3.0-dev.20170220","_shasum":"15a337e92b40db9d3b51a3293c781c1319c49857","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"15a337e92b40db9d3b51a3293c781c1319c49857","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170220.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170220.tgz_1487574809128_0.2833214891143143"},"directories":{}},"2.3.0-dev.20170221":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170221","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"b4d2b1db0d77bf886aa844d23c198d16ba7b67ae","_id":"typescript@2.3.0-dev.20170221","_shasum":"7bfec654bc2b1aac45b06cd050158232af03e99c","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"7bfec654bc2b1aac45b06cd050158232af03e99c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170221.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170221.tgz_1487661159366_0.4418482293840498"},"directories":{}},"2.3.0-dev.20170222":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170222","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"359823b4beb792092c0a7a1558f9c7134584be1f","_id":"typescript@2.3.0-dev.20170222","_shasum":"76627ef9c2a70b7b08ea13d44378764c3100ae71","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"76627ef9c2a70b7b08ea13d44378764c3100ae71","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170222.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170222.tgz_1487747576470_0.4557544216513634"},"directories":{}},"2.2.1":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.1","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"4.3.0-dev.0","typescript":"^2.2"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a29e8cf2406dd41aea48be0fb68cde6a2e972564","_id":"typescript@2.2.1","_shasum":"4862b662b988a4c8ff691cc7969622d24db76ae9","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"4862b662b988a4c8ff691cc7969622d24db76ae9","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.1.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.1.tgz_1487783888523_0.46052183769643307"},"directories":{}},"2.3.0-dev.20170223":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170223","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"65da012527937a3074c62655d60ee08fee809f7f","_id":"typescript@2.3.0-dev.20170223","_shasum":"286494c36625ea2eb26f963ed205cd9ca5c41447","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"286494c36625ea2eb26f963ed205cd9ca5c41447","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170223.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170223.tgz_1487833942740_0.4773260762449354"},"directories":{}},"2.3.0-dev.20170224":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170224","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2d4b4c9c805a552369eb9a776a9b97cb280371c6","_id":"typescript@2.3.0-dev.20170224","_shasum":"062a2b874bde1dfba6147396188df59994d89332","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"062a2b874bde1dfba6147396188df59994d89332","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170224.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170224.tgz_1487920410372_0.6417732781264931"},"directories":{}},"2.3.0-dev.20170225":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170225","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"5b23dbc9990e1d65b22998ff0e3ef12f8247a110","_id":"typescript@2.3.0-dev.20170225","_shasum":"7d7ca24838afabafb95a2fe50a4578e2d6fb442e","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"7d7ca24838afabafb95a2fe50a4578e2d6fb442e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170225.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170225.tgz_1488006783880_0.5387127101421356"},"directories":{}},"2.3.0-dev.20170226":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170226","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"87d804e4715f6c5bb0cf3693b1da386242e57219","_id":"typescript@2.3.0-dev.20170226","_shasum":"33a79d909668a6491d480c6c95bd6362425bfcd9","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"33a79d909668a6491d480c6c95bd6362425bfcd9","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170226.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170226.tgz_1488093190246_0.2693984794896096"},"directories":{}},"2.3.0-dev.20170227":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170227","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"87d804e4715f6c5bb0cf3693b1da386242e57219","_id":"typescript@2.3.0-dev.20170227","_shasum":"c974c59575acd25dba67c9dec8467e6076e54746","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"c974c59575acd25dba67c9dec8467e6076e54746","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170227.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170227.tgz_1488179583252_0.09349140617996454"},"directories":{}},"2.3.0-dev.20170228":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170228","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"4f1d7a56b904d49e3f545579f99d43a06ad13371","_id":"typescript@2.3.0-dev.20170228","_shasum":"78d59062c0cf8bc64172f6634bda3cda52da0191","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"78d59062c0cf8bc64172f6634bda3cda52da0191","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170228.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170228.tgz_1488266011823_0.5093146003782749"},"directories":{}},"2.3.0-dev.20170301":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170301","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"97965574edadfa09f3171ded366327637afb0deb","_id":"typescript@2.3.0-dev.20170301","_shasum":"f79d0a1162569439544ca8d3f290b5ad7a78e25e","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f79d0a1162569439544ca8d3f290b5ad7a78e25e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170301.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170301.tgz_1488352377974_0.12241558427922428"},"directories":{}},"2.3.0-dev.20170302":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170302","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"5abb8f3caa27e30a99797064b8383c2b9a5887f0","_id":"typescript@2.3.0-dev.20170302","_shasum":"7bd3aa93a032be88b39f7563781338aac939d3f6","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"7bd3aa93a032be88b39f7563781338aac939d3f6","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170302.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170302.tgz_1488438847699_0.35560158547014"},"directories":{}},"2.2.2-insiders.20170302":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.2-insiders.20170302","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"4.3.0-dev.0","typescript":"^2.2"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"f6b17387b63ac60d022ef3a9086498bb1021e1c9","_id":"typescript@2.2.2-insiders.20170302","_shasum":"29cd01fd94467d3fc61f08808edb143ac05dd6cb","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"29cd01fd94467d3fc61f08808edb143ac05dd6cb","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.2-insiders.20170302.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.2-insiders.20170302.tgz_1488486091028_0.7144766061101109"},"directories":{}},"2.3.0-dev.20170303":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170303","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"5abb8f3caa27e30a99797064b8383c2b9a5887f0","_id":"typescript@2.3.0-dev.20170303","_shasum":"a94608c40d62f8675bafe5df7dc78a2a77bb71ba","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a94608c40d62f8675bafe5df7dc78a2a77bb71ba","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170303.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170303.tgz_1488525165279_0.5675947822164744"},"directories":{}},"2.3.0-dev.20170306":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170306","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"b1520345bec020280c3cd8a38fca5f0d43f4761e","_id":"typescript@2.3.0-dev.20170306","_shasum":"1b2af5681473d13950ebc7319f120c607b6b34b4","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"1b2af5681473d13950ebc7319f120c607b6b34b4","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170306.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170306.tgz_1488784360238_0.4072050414979458"},"directories":{}},"2.3.0-dev.20170307":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170307","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"89f43d13e0a4786c99a9b3fb527b7c085ce90330","_id":"typescript@2.3.0-dev.20170307","_shasum":"06536bf8b16b351c0f5ab155233676c459a7f9c9","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"06536bf8b16b351c0f5ab155233676c459a7f9c9","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170307.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170307.tgz_1488870867994_0.35902652982622385"},"directories":{}},"2.3.0-dev.20170308":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170308","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"1bf4f06b2a9548e881c664c7441a388f4e1fdeec","_id":"typescript@2.3.0-dev.20170308","_shasum":"a1b64c39e180369803b2fca08dd086057a1658fa","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a1b64c39e180369803b2fca08dd086057a1658fa","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170308.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170308.tgz_1488957235823_0.7635773809161037"},"directories":{}},"2.3.0-dev.20170310":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170310","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"940d165b0d9b697b32cf0b015b3b680f7bc146bc","_id":"typescript@2.3.0-dev.20170310","_shasum":"eca1f6cfc4c2e2ab5b0531aebb22529c89ec3603","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"eca1f6cfc4c2e2ab5b0531aebb22529c89ec3603","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170310.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170310.tgz_1489130000060_0.7234955036547035"},"directories":{}},"2.3.0-dev.20170311":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170311","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6632e324edbb263bdd699468a92a4f4518fdb9e6","_id":"typescript@2.3.0-dev.20170311","_shasum":"9522446db838650e7b1f056fcbae08a102d6192c","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"9522446db838650e7b1f056fcbae08a102d6192c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170311.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170311.tgz_1489216463061_0.06440871255472302"},"directories":{}},"2.3.0-dev.20170312":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170312","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6632e324edbb263bdd699468a92a4f4518fdb9e6","_id":"typescript@2.3.0-dev.20170312","_shasum":"6a954357d988eacfcfe0c90695b6250b16f8cb75","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"6a954357d988eacfcfe0c90695b6250b16f8cb75","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170312.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170312.tgz_1489302798770_0.14295845618471503"},"directories":{}},"2.3.0-dev.20170313":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170313","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6632e324edbb263bdd699468a92a4f4518fdb9e6","_id":"typescript@2.3.0-dev.20170313","_shasum":"9fe7e4b8c4ee5106ced0dea59e621d403a079969","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"9fe7e4b8c4ee5106ced0dea59e621d403a079969","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170313.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170313.tgz_1489385620806_0.6741911380086094"},"directories":{}},"2.3.0-dev.20170314":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170314","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ea57fbc59f85a7f9f690ea1bc1e1813c7db03508","_id":"typescript@2.3.0-dev.20170314","_shasum":"2cda5cdd31f747b24920d818bf25a7e0ba447f3c","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"2cda5cdd31f747b24920d818bf25a7e0ba447f3c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170314.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170314.tgz_1489472056462_0.24466043477877975"},"directories":{}},"2.3.0-dev.20170315":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170315","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ea57fbc59f85a7f9f690ea1bc1e1813c7db03508","_id":"typescript@2.3.0-dev.20170315","_shasum":"596f0db2388da256dfa1b4cb3fb5da6a18e21aca","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"596f0db2388da256dfa1b4cb3fb5da6a18e21aca","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170315.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170315.tgz_1489558420582_0.8582374423276633"},"directories":{}},"2.3.0-dev.20170316":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170316","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"4b3cd6a1dba38109a3176c5c93f4424507b225db","_id":"typescript@2.3.0-dev.20170316","_shasum":"cb04176ecbc67a93e8c35ea9f4f0400b9e189006","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"cb04176ecbc67a93e8c35ea9f4f0400b9e189006","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170316.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170316.tgz_1489644844075_0.47445191931910813"},"directories":{}},"2.3.0-dev.20170317":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170317","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"595342615b8e9c729626668f3a1eff3c764fb77b","_id":"typescript@2.3.0-dev.20170317","_shasum":"8a3b13aa75b92b2bfb0074dd92a45d8be973a696","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8a3b13aa75b92b2bfb0074dd92a45d8be973a696","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170317.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170317.tgz_1489731311331_0.4602776581887156"},"directories":{}},"2.2.2-insiders.20170317":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.2-insiders.20170317","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"4.3.0-dev.0","typescript":"^2.2"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d89553f63edab8d790e76afdfd4b541551732f6e","_id":"typescript@2.2.2-insiders.20170317","_shasum":"4e671cdbd7706f7b4c1d096081a55b6bee49a979","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"4e671cdbd7706f7b4c1d096081a55b6bee49a979","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.2-insiders.20170317.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.2.2-insiders.20170317.tgz_1489797987145_0.16657975665293634"},"directories":{}},"2.3.0-dev.20170318":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170318","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ac67b94a6ea209760bfc31d9328337a16c41a0c1","_id":"typescript@2.3.0-dev.20170318","_shasum":"23ee34280ddf23a4cef659fbafdf01d463a16e73","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"23ee34280ddf23a4cef659fbafdf01d463a16e73","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170318.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170318.tgz_1489817660573_0.36834536166861653"},"directories":{}},"2.3.0-dev.20170319":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170319","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ac67b94a6ea209760bfc31d9328337a16c41a0c1","_id":"typescript@2.3.0-dev.20170319","_shasum":"8333a9e83d1ea015a64b908d4718ad90532a86f2","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8333a9e83d1ea015a64b908d4718ad90532a86f2","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170319.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170319.tgz_1489904073372_0.6401022975333035"},"directories":{}},"2.3.0-dev.20170320":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170320","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ac67b94a6ea209760bfc31d9328337a16c41a0c1","_id":"typescript@2.3.0-dev.20170320","_shasum":"b95fadf23dd9578e652965d5e529f3d84130dc51","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"b95fadf23dd9578e652965d5e529f3d84130dc51","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170320.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170320.tgz_1489990425049_0.22680562431924045"},"directories":{}},"2.3.0-dev.20170321":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170321","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"b6dfa39ce0b930b38cd391c6148efa8ea3fe960a","_id":"typescript@2.3.0-dev.20170321","_shasum":"91b181a65cb70dc435d24f7fde9a2c3e134199c1","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"91b181a65cb70dc435d24f7fde9a2c3e134199c1","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170321.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170321.tgz_1490076865343_0.545285859843716"},"directories":{}},"2.3.0-dev.20170322":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170322","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"4a1cf5d1828ea1d0f40797022385063140e490f9","_id":"typescript@2.3.0-dev.20170322","_shasum":"73a2250d18d2030931fa8359352d0113e49f5e6a","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"73a2250d18d2030931fa8359352d0113e49f5e6a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170322.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170322.tgz_1490163225415_0.6654169601388276"},"directories":{}},"2.3.0-dev.20170323":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170323","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"aad80ad1380f4db622c4643edf58d8573d9db43c","_id":"typescript@2.3.0-dev.20170323","_shasum":"a2a996e9da2b4c635d914afbe681cfad13ba00ea","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a2a996e9da2b4c635d914afbe681cfad13ba00ea","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170323.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170323.tgz_1490249659289_0.06077407603152096"},"directories":{}},"2.3.0-dev.20170324":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170324","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a9d8df2e5a9486738540cfb90fc42670004a8078","_id":"typescript@2.3.0-dev.20170324","_shasum":"2db07374d873b40863ac435cd4b05f55575b34b1","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"2db07374d873b40863ac435cd4b05f55575b34b1","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170324.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170324.tgz_1490335961898_0.454483937472105"},"directories":{}},"2.3.0-dev.20170325":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170325","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"9e8b3d9c3ba683311fac6306d816137d20a931b3","_id":"typescript@2.3.0-dev.20170325","_shasum":"61333b1de560a4846401eb83688a522826b4dfeb","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"61333b1de560a4846401eb83688a522826b4dfeb","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170325.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170325.tgz_1490422394943_0.17851735767908394"},"directories":{}},"2.3.0-dev.20170326":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170326","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"9e8b3d9c3ba683311fac6306d816137d20a931b3","_id":"typescript@2.3.0-dev.20170326","_shasum":"81995ac5a20e1fc1f18a7abd5ff3bf4ff7f59be0","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"81995ac5a20e1fc1f18a7abd5ff3bf4ff7f59be0","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170326.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170326.tgz_1490508783189_0.6131800184957683"},"directories":{}},"2.3.0-dev.20170327":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170327","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"02e487ac08fac6d3564ae45d1f1f7473ec558a92","_id":"typescript@2.3.0-dev.20170327","_shasum":"1b8e456554bbd1b5caa96157571b8ac76bf0b698","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"1b8e456554bbd1b5caa96157571b8ac76bf0b698","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170327.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170327.tgz_1490595182672_0.10577051434665918"},"directories":{}},"2.2.2":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.2.2","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"4.3.0-dev.0","typescript":"^2.2"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d89553f63edab8d790e76afdfd4b541551732f6e","_id":"typescript@2.2.2","_shasum":"606022508479b55ffa368b58fee963a03dfd7b0c","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"606022508479b55ffa368b58fee963a03dfd7b0c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.2.2.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.2.2.tgz_1490637295228_0.5542608459945768"},"directories":{}},"2.3.0-dev.20170328":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170328","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"0fd0903280d9c5090f18bcc22b7df7ca608857b1","_id":"typescript@2.3.0-dev.20170328","_shasum":"8d08ac18b99ea02fead6999c1be1c07b5bb44132","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8d08ac18b99ea02fead6999c1be1c07b5bb44132","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170328.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170328.tgz_1490681560372_0.8197383997030556"},"directories":{}},"2.3.0-dev.20170329":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170329","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"3ab7c868d97c1d0d4676c775271c7fb5e187be79","_id":"typescript@2.3.0-dev.20170329","_shasum":"29e6132d3003e4b1f5742fadf5854d5b4067719f","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"29e6132d3003e4b1f5742fadf5854d5b4067719f","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170329.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170329.tgz_1490767984306_0.38311975286342204"},"directories":{}},"2.3.0-dev.20170330":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170330","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e298f759c3981c287fb5b26747afebda7a02b226","_id":"typescript@2.3.0-dev.20170330","_shasum":"84b28bd284f7c8f2c4aca69006ffa66ba721d23a","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"84b28bd284f7c8f2c4aca69006ffa66ba721d23a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170330.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170330.tgz_1490854417868_0.6821240275166929"},"directories":{}},"2.3.0-dev.20170331":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170331","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"045998767344d5cd580d9cbcc3d7e1300e614505","_id":"typescript@2.3.0-dev.20170331","_shasum":"969ed460092801745c831b2fc2311ae22aa6b014","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"969ed460092801745c831b2fc2311ae22aa6b014","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170331.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170331.tgz_1490940814528_0.16316868970170617"},"directories":{}},"2.3.0-dev.20170401":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170401","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a62869c81ecd6b1c75f41e2f780ffe2ea178678c","_id":"typescript@2.3.0-dev.20170401","_shasum":"1a0c0429c9f2f286054c13ddad572b8b7280a471","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"1a0c0429c9f2f286054c13ddad572b8b7280a471","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170401.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170401.tgz_1491027268688_0.6173566083889455"},"directories":{}},"2.3.0-dev.20170402":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170402","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a62869c81ecd6b1c75f41e2f780ffe2ea178678c","_id":"typescript@2.3.0-dev.20170402","_shasum":"76088cb4f86bfbeebbb3618d0b27bbf336985411","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"76088cb4f86bfbeebbb3618d0b27bbf336985411","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170402.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170402.tgz_1491113634293_0.7933439661283046"},"directories":{}},"2.3.0-dev.20170403":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170403","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a62869c81ecd6b1c75f41e2f780ffe2ea178678c","_id":"typescript@2.3.0-dev.20170403","_shasum":"12ebbac4fd77098a28426e1e1ab8fa7ed465970d","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"12ebbac4fd77098a28426e1e1ab8fa7ed465970d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170403.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170403.tgz_1491200093316_0.9425895011518151"},"directories":{}},"2.3.0-dev.20170404":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170404","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"7de3539b49623f6c6967744664e143d9671b9d60","_id":"typescript@2.3.0-dev.20170404","_shasum":"73069bb7fef52d5ad4d9c29dbc1d97c241f4cb06","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"73069bb7fef52d5ad4d9c29dbc1d97c241f4cb06","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170404.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170404.tgz_1491286449522_0.11321780132129788"},"directories":{}},"2.3.0-dev.20170405":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170405","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"41fb0aaf6cfe77613876908716e7291518b430df","_id":"typescript@2.3.0-dev.20170405","_shasum":"0455b48e702e6f4a10c2250429476edd421931cc","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0455b48e702e6f4a10c2250429476edd421931cc","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170405.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170405.tgz_1491372865328_0.5709740710444748"},"directories":{}},"2.3.0-dev.20170406":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170406","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"dce7fca83d6bbf0bf72fd0a4237ad152599bd2f7","_id":"typescript@2.3.0-dev.20170406","_shasum":"c3aad80489259749c1d0903e420f3d8464e02b01","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"c3aad80489259749c1d0903e420f3d8464e02b01","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170406.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170406.tgz_1491459261498_0.19047211855649948"},"directories":{}},"2.3.0-dev.20170407":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170407","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"3029b8fe38edde707c016a99b2edfa5b08a6e852","_id":"typescript@2.3.0-dev.20170407","_shasum":"a28c41ab3633eb31ee8d090f7a961947b77c46cc","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a28c41ab3633eb31ee8d090f7a961947b77c46cc","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170407.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170407.tgz_1491545665115_0.7655672621913254"},"directories":{}},"2.3.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"154d25c5fa2e6c7add01b1ebabe40dd31369a65a","_id":"typescript@2.3.0","_shasum":"2e63e09284392bc8158a2444c33e2093795c0418","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"2e63e09284392bc8158a2444c33e2093795c0418","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0.tgz_1491840208657_0.6297718936111778"},"directories":{}},"2.3.0-dev.20170411":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170411","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2ca90b7eb64d208becb0ed1dbae0b625ab21ae4f","_id":"typescript@2.3.0-dev.20170411","_shasum":"cc3ccf87dc0f4c4004a58efd38021fcef68ffb85","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"cc3ccf87dc0f4c4004a58efd38021fcef68ffb85","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170411.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170411.tgz_1491891267807_0.1916531950701028"},"directories":{}},"2.3.0-dev.20170412":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170412","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"397efbde56ea8cf41672cd7844221d6a4aaf0564","_id":"typescript@2.3.0-dev.20170412","_shasum":"d99df60ea6ebaac5e3114c157914c4090917f882","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d99df60ea6ebaac5e3114c157914c4090917f882","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170412.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170412.tgz_1491977647747_0.8821107533294708"},"directories":{}},"2.3.0-dev.20170413":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170413","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"014845a6378916f08d6433b817cc1b250d1695c7","_id":"typescript@2.3.0-dev.20170413","_shasum":"0e7c299b6422ffbfe3923019bbde44f9a4a6a65b","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0e7c299b6422ffbfe3923019bbde44f9a4a6a65b","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170413.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170413.tgz_1492063997156_0.1166076275985688"},"directories":{}},"2.3.1-insiders.20170413":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.1-insiders.20170413","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"339d2eed8e67a61b7e8fd8113f67d7f6fbb75f4a","_id":"typescript@2.3.1-insiders.20170413","_shasum":"c7d00781a218367662441f78a96c365bdad578f6","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"c7d00781a218367662441f78a96c365bdad578f6","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.1-insiders.20170413.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.1-insiders.20170413.tgz_1492123502109_0.158065645955503"},"directories":{}},"2.3.0-dev.20170414":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170414","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d129199f4115229ca5e53d6624f2c8e9b02ce821","_id":"typescript@2.3.0-dev.20170414","_shasum":"21199d254e3436215c1cefc60fc5bd266de573ce","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"21199d254e3436215c1cefc60fc5bd266de573ce","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170414.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170414.tgz_1492150395837_0.8312366106547415"},"directories":{}},"2.3.0-dev.20170415":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170415","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"af64ef8b67ba18b0a9d582aa1187f2681f1d8a51","_id":"typescript@2.3.0-dev.20170415","_shasum":"7db31dbf8004a7476af5ef51e5a427811be25424","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"7db31dbf8004a7476af5ef51e5a427811be25424","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170415.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170415.tgz_1492236804080_0.1122789210639894"},"directories":{}},"2.3.0-dev.20170416":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170416","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"af64ef8b67ba18b0a9d582aa1187f2681f1d8a51","_id":"typescript@2.3.0-dev.20170416","_shasum":"a7fd546221aa85ca10c2fca0ec725989179fa7ce","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a7fd546221aa85ca10c2fca0ec725989179fa7ce","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170416.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170416.tgz_1492323201927_0.9220518998336047"},"directories":{}},"2.3.1-insiders.20170416":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.1-insiders.20170416","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"54b057658373c04a421d02ec84b5008a0f32ff9d","_id":"typescript@2.3.1-insiders.20170416","_shasum":"0725a3eceddf23c0ff8ea8057d7979f1c1c25cec","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0725a3eceddf23c0ff8ea8057d7979f1c1c25cec","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.1-insiders.20170416.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.1-insiders.20170416.tgz_1492386460365_0.5193431144580245"},"directories":{}},"2.3.0-dev.20170417":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170417","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"af64ef8b67ba18b0a9d582aa1187f2681f1d8a51","_id":"typescript@2.3.0-dev.20170417","_shasum":"3c7c3eff1f74ca57f22ee65bd33cda7694f6de05","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"3c7c3eff1f74ca57f22ee65bd33cda7694f6de05","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170417.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170417.tgz_1492409618275_0.6164822389837354"},"directories":{}},"2.3.0-dev.20170418":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170418","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"b038d28ed4490924f115b2268086313f67f9d5a5","_id":"typescript@2.3.0-dev.20170418","_shasum":"e969d9342c5c1efb2e89d0712e583c512a84fc53","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e969d9342c5c1efb2e89d0712e583c512a84fc53","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170418.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170418.tgz_1492496047014_0.9742859634570777"},"directories":{}},"2.3.0-dev.20170419":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170419","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"2e43c869b43b40c43eafb8926bee7e32d018cc38","_id":"typescript@2.3.0-dev.20170419","_shasum":"f713796c4462cca1478d073a36036fdbdcc3175c","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f713796c4462cca1478d073a36036fdbdcc3175c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170419.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170419.tgz_1492582437922_0.9829002011101693"},"directories":{}},"2.3.0-dev.20170420":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170420","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"b267492127fcc93b8a11c66991ee32581cc998f5","_id":"typescript@2.3.0-dev.20170420","_shasum":"19405cc5fea53da3fb4b8212c67dfbc6e7ff2d1b","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"19405cc5fea53da3fb4b8212c67dfbc6e7ff2d1b","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170420.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170420.tgz_1492668892628_0.037822855869308114"},"directories":{}},"2.3.1-insiders.20170420":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.1-insiders.20170420","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"54b5635d4e01f9fbe5946e1bcadc264d5b9b0826","_id":"typescript@2.3.1-insiders.20170420","_shasum":"bdbed7b2ba60b4cad94685cdbcf28983f376ea14","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"bdbed7b2ba60b4cad94685cdbcf28983f376ea14","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.1-insiders.20170420.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.1-insiders.20170420.tgz_1492727634757_0.7956692227162421"},"directories":{}},"2.3.0-dev.20170421":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170421","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"8534b430beff7f122091d19d2536b5cc798860ce","_id":"typescript@2.3.0-dev.20170421","_shasum":"fe00e5e7362e3ab359e89822b41931557424937a","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"fe00e5e7362e3ab359e89822b41931557424937a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170421.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170421.tgz_1492755278448_0.1750998159404844"},"directories":{}},"2.3.0-dev.20170422":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170422","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a1a2006074a01ca0b75b08294377cc52302e3e71","_id":"typescript@2.3.0-dev.20170422","_shasum":"d510155a0672d13bff6a327edce13f0697ba3858","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d510155a0672d13bff6a327edce13f0697ba3858","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170422.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170422.tgz_1492841571700_0.3049152474850416"},"directories":{}},"2.3.0-dev.20170423":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170423","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a1a2006074a01ca0b75b08294377cc52302e3e71","_id":"typescript@2.3.0-dev.20170423","_shasum":"c65b643314d2e7aa607718f3d59da2059f01fabe","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"c65b643314d2e7aa607718f3d59da2059f01fabe","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170423.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170423.tgz_1492928040947_0.13977562775835395"},"directories":{}},"2.3.0-dev.20170424":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170424","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a1a2006074a01ca0b75b08294377cc52302e3e71","_id":"typescript@2.3.0-dev.20170424","_shasum":"aecc55e12cf4d27abab9387eab48b8d98ebb002a","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"aecc55e12cf4d27abab9387eab48b8d98ebb002a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170424.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170424.tgz_1493014412551_0.7090106357354671"},"directories":{}},"2.3.0-dev.20170425":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170425","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"da5fd936e6db8de4aafe3399761a58c390189d68","_id":"typescript@2.3.0-dev.20170425","_shasum":"75bb5c53d12760c02603bf1edea6dc451a725c26","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"75bb5c53d12760c02603bf1edea6dc451a725c26","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170425.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170425.tgz_1493100824053_0.011530429823324084"},"directories":{}},"2.3.1-insiders.20170425":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.1-insiders.20170425","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"8a85f4a61ea200ffdd35113b0fca77a901c5be84","_id":"typescript@2.3.1-insiders.20170425","_shasum":"edb0eb21c73492f6ac5bee6abd50858b77926160","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"edb0eb21c73492f6ac5bee6abd50858b77926160","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.1-insiders.20170425.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.1-insiders.20170425.tgz_1493151536666_0.8746582888998091"},"directories":{}},"2.3.1-insiders.20170425.1":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.1-insiders.20170425.1","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"47e55697788261526237d694d8bdc11a99b80f37","_id":"typescript@2.3.1-insiders.20170425.1","_shasum":"fd44d9c0d2487026bdf694042a27cfa2570c13cc","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"fd44d9c0d2487026bdf694042a27cfa2570c13cc","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.1-insiders.20170425.1.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.1-insiders.20170425.1.tgz_1493161017864_0.9299850440584123"},"directories":{}},"2.3.0-dev.20170426":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.0-dev.20170426","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6756e3e44c3b21d021a7542b63f2de84b65695c4","_id":"typescript@2.3.0-dev.20170426","_shasum":"d0cb8b4263dfe65363f2b2c4b6ab12182b586e68","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"d0cb8b4263dfe65363f2b2c4b6ab12182b586e68","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.0-dev.20170426.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.0-dev.20170426.tgz_1493187219539_0.7928366877604276"},"directories":{}},"2.4.0-dev.20170427":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170427","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"441d76206578db4069c030b173ae660137532764","_id":"typescript@2.4.0-dev.20170427","_shasum":"be25af61b8fb909b0c9e694d85e2efd0ad490da1","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"be25af61b8fb909b0c9e694d85e2efd0ad490da1","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170427.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.4.0-dev.20170427.tgz_1493273658002_0.3647042296361178"},"directories":{}},"2.3.1":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.1","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"47e55697788261526237d694d8bdc11a99b80f37","_id":"typescript@2.3.1","_shasum":"e3361fb395c6c3f9c69faeeabc9503f8bdecaea1","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"e3361fb395c6c3f9c69faeeabc9503f8bdecaea1","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.1.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.3.1.tgz_1493308925365_0.5768524957820773"},"directories":{}},"2.4.0-dev.20170428":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170428","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"3d23b9c15a2c2f234696fb025df3ca40de4f3d20","_id":"typescript@2.4.0-dev.20170428","_shasum":"b522f4006066f580652f520362b92f76e111d447","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"b522f4006066f580652f520362b92f76e111d447","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170428.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.4.0-dev.20170428.tgz_1493360015510_0.3306410457007587"},"directories":{}},"2.3.2":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.2","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d1a202dca63cf747791048e1ed4b8ffe0efbf601","_id":"typescript@2.3.2","_shasum":"f0f045e196f69a72f06b25fd3bd39d01c3ce9984","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"f0f045e196f69a72f06b25fd3bd39d01c3ce9984","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.2.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.2.tgz_1493417999844_0.5394609735812992"},"directories":{}},"2.4.0-dev.20170429":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170429","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"7080c4155b2c6cc69c5dae3f312d720d434da3a3","_id":"typescript@2.4.0-dev.20170429","_shasum":"f37349f882a02d230ddca8c00a7ae90d3e6494d1","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f37349f882a02d230ddca8c00a7ae90d3e6494d1","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170429.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.4.0-dev.20170429.tgz_1493446433360_0.4333729138597846"},"directories":{}},"2.4.0-dev.20170430":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170430","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"7080c4155b2c6cc69c5dae3f312d720d434da3a3","_id":"typescript@2.4.0-dev.20170430","_shasum":"f3a077c42ae6b39e136b194aa379e5a0c0504d97","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f3a077c42ae6b39e136b194aa379e5a0c0504d97","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170430.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.4.0-dev.20170430.tgz_1493532833741_0.16693749744445086"},"directories":{}},"2.4.0-dev.20170501":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170501","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"7080c4155b2c6cc69c5dae3f312d720d434da3a3","_id":"typescript@2.4.0-dev.20170501","_shasum":"985f875d2576282fa31745fd9a37aca4f35a55a3","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"985f875d2576282fa31745fd9a37aca4f35a55a3","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170501.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.4.0-dev.20170501.tgz_1493619255846_0.21991519257426262"},"directories":{}},"2.4.0-dev.20170502":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170502","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"1db4f96fd14fc3de5ae3704e925afd6474cfb8f5","_id":"typescript@2.4.0-dev.20170502","_shasum":"330a18e538dc07c74ad20c1175409447b6f6ea4a","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"330a18e538dc07c74ad20c1175409447b6f6ea4a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170502.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.4.0-dev.20170502.tgz_1493705647172_0.7484273998998106"},"directories":{}},"2.4.0-dev.20170503":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170503","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"78df75426f95086dbaa5f10f296ba249c81ce854","_id":"typescript@2.4.0-dev.20170503","_shasum":"9d570bd4fe62fb974fe1a0985ba1eec266b3282e","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"9d570bd4fe62fb974fe1a0985ba1eec266b3282e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170503.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.4.0-dev.20170503.tgz_1493792014937_0.27708687516860664"},"directories":{}},"2.4.0-dev.20170504":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170504","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e1c97e104fd555547bf9a5243bfdd2178fba6f06","_id":"typescript@2.4.0-dev.20170504","_shasum":"339cd61ac33be86b03d26f1f2a030d1634e2d617","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"339cd61ac33be86b03d26f1f2a030d1634e2d617","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170504.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.4.0-dev.20170504.tgz_1493878447814_0.8768008411861956"},"directories":{}},"2.4.0-dev.20170505":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170505","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"96aca4c7d090ed0842bc464c3ab683400f9679ef","_id":"typescript@2.4.0-dev.20170505","_shasum":"0034ab8d60ef1648362349b22cd1060e1cf3c125","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0034ab8d60ef1648362349b22cd1060e1cf3c125","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170505.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.4.0-dev.20170505.tgz_1493964844818_0.6065928242169321"},"directories":{}},"2.4.0-dev.20170506":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170506","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"83da3268ed6b6a0a316dcc76be9c5f4fa03e6421","_id":"typescript@2.4.0-dev.20170506","_shasum":"5be7245d27dde43b1e1c9a18cb7c88890a41499c","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5be7245d27dde43b1e1c9a18cb7c88890a41499c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170506.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.4.0-dev.20170506.tgz_1494051262617_0.6603467997629195"},"directories":{}},"2.4.0-dev.20170507":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170507","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"83da3268ed6b6a0a316dcc76be9c5f4fa03e6421","_id":"typescript@2.4.0-dev.20170507","_shasum":"f0ab1103e60ac6a951f3463cee707d902da489e4","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f0ab1103e60ac6a951f3463cee707d902da489e4","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170507.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.4.0-dev.20170507.tgz_1494137639689_0.22025651903823018"},"directories":{}},"2.4.0-dev.20170508":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170508","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"c39a6835048d68977076e558d78653a5226d07af","_id":"typescript@2.4.0-dev.20170508","_shasum":"66c776281eaf64a1ded0291cd66d695ee39cbcea","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"66c776281eaf64a1ded0291cd66d695ee39cbcea","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170508.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.4.0-dev.20170508.tgz_1494224027126_0.15943677094765007"},"directories":{}},"2.4.0-dev.20170509":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170509","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"cb723cf1dcf6a595f3777080352fae0ddac10746","_id":"typescript@2.4.0-dev.20170509","_shasum":"684374cfe46cff71bff67bf18e33de28a62d879d","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"684374cfe46cff71bff67bf18e33de28a62d879d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170509.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.4.0-dev.20170509.tgz_1494310427588_0.7747447807341814"},"directories":{}},"2.4.0-dev.20170510":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170510","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"17375989359a7392e468668632661fee4302d1a6","_id":"typescript@2.4.0-dev.20170510","_shasum":"e4db6af2e02ac01972e6afe3ae3ab51a94bb0ea1","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e4db6af2e02ac01972e6afe3ae3ab51a94bb0ea1","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170510.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.4.0-dev.20170510.tgz_1494396887962_0.9603664940223098"},"directories":{}},"2.4.0-dev.20170511":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170511","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"066bb16173a9f07197f9d205d56763645c31080f","_id":"typescript@2.4.0-dev.20170511","_shasum":"dd23bd45a7cd8d53fa9102d966a657bbf7e30a60","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"dd23bd45a7cd8d53fa9102d966a657bbf7e30a60","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170511.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.4.0-dev.20170511.tgz_1494483246812_0.7860567506868392"},"directories":{}},"2.4.0-dev.20170512":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170512","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a12ec1af438d2769064442dfb675c8eef2386520","_id":"typescript@2.4.0-dev.20170512","_shasum":"95b3c58c0f93123060f15a3bcba749f2e153fd9e","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"95b3c58c0f93123060f15a3bcba749f2e153fd9e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170512.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.4.0-dev.20170512.tgz_1494569680836_0.2586050610989332"},"directories":{}},"2.3.3-insiders.20170512":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.3-insiders.20170512","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"8534a5abfcc53c71b028ff6e3bc0ab2fbf3b98c8","_id":"typescript@2.3.3-insiders.20170512","_shasum":"6125088311f1b7f9ff6ba73e0b5380a6c85dd2ce","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"6125088311f1b7f9ff6ba73e0b5380a6c85dd2ce","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.3-insiders.20170512.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.3.3-insiders.20170512.tgz_1494619465150_0.9099700697697699"},"directories":{}},"2.4.0-dev.20170513":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170513","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"50e2912cd24d197c1303164eb88fc43c022605c2","_id":"typescript@2.4.0-dev.20170513","_shasum":"8eada73ab61821276c2c760d99b2579b7f7c8605","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8eada73ab61821276c2c760d99b2579b7f7c8605","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170513.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.4.0-dev.20170513.tgz_1494656036940_0.9074124610051513"},"directories":{}},"2.4.0-dev.20170514":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170514","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"50e2912cd24d197c1303164eb88fc43c022605c2","_id":"typescript@2.4.0-dev.20170514","_shasum":"8d42a700d773711aa944fbb8b84d43ec42d2fe4a","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8d42a700d773711aa944fbb8b84d43ec42d2fe4a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170514.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.4.0-dev.20170514.tgz_1494742467393_0.8630482391454279"},"directories":{}},"2.4.0-dev.20170515":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170515","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"50e2912cd24d197c1303164eb88fc43c022605c2","_id":"typescript@2.4.0-dev.20170515","_shasum":"8c85659e0a86242094fdd1f0ba18df4dcfa991c2","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"8c85659e0a86242094fdd1f0ba18df4dcfa991c2","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170515.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.4.0-dev.20170515.tgz_1494828816950_0.7814069930464029"},"directories":{}},"2.4.0-dev.20170516":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170516","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d51e467238db9229ca0620607067c083aee07cc3","_id":"typescript@2.4.0-dev.20170516","_shasum":"1c79263c784287083616fd7ea88cd74309a8a93e","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"1c79263c784287083616fd7ea88cd74309a8a93e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170516.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/typescript-2.4.0-dev.20170516.tgz_1494915368305_0.6557889515534043"},"directories":{}},"2.4.0-dev.20170517":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170517","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ebcbd8f82883a0d7af999c80e669af527f8c2b8b","_id":"typescript@2.4.0-dev.20170517","_shasum":"9ffbd0637e461a2039d44cb6bdb58128a9cabf3c","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"9ffbd0637e461a2039d44cb6bdb58128a9cabf3c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170517.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.4.0-dev.20170517.tgz_1495001686017_0.04209134099073708"},"directories":{}},"2.4.0-dev.20170518":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170518","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"5e20c1ce11b7be240868fd14d350ea5f40f61a9c","_id":"typescript@2.4.0-dev.20170518","_shasum":"304d0a8209836bd9e6e361ee287c6699ba8fd60f","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"304d0a8209836bd9e6e361ee287c6699ba8fd60f","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170518.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.4.0-dev.20170518.tgz_1495088104843_0.23690050467848778"},"directories":{}},"2.4.0-dev.20170519":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170519","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ada39c506d2c5e1d2feaea4b3e2f0fb414537955","_id":"typescript@2.4.0-dev.20170519","_shasum":"f25373f3e9497843ee90718490f6a721b61ac857","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f25373f3e9497843ee90718490f6a721b61ac857","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170519.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/typescript-2.4.0-dev.20170519.tgz_1495174412134_0.9675724904518574"},"directories":{}},"2.3.3":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.3","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e2cc27bec226eabaf52bd05d4ea3b44db115e463","_id":"typescript@2.3.3","_shasum":"9639f3c3b40148e8ca97fe08a51dd1891bb6be22","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"9639f3c3b40148e8ca97fe08a51dd1891bb6be22","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.3.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.3.3.tgz_1495486124091_0.5831131974700838"},"directories":{}},"2.4.0-dev.20170523":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170523","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"567b10d71c0901b8e6127fb4987a018aad37da29","_id":"typescript@2.4.0-dev.20170523","_shasum":"6ca100fbd11ceeaab256232dbb960da8ec4c18b1","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"6ca100fbd11ceeaab256232dbb960da8ec4c18b1","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170523.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.0-dev.20170523.tgz_1495520070595_0.4316156262066215"},"directories":{}},"2.4.0-dev.20170524":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170524","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"b4ee6b19aac530a208ea2d448b83fbcb61e0f4b7","_id":"typescript@2.4.0-dev.20170524","_shasum":"f818a6ae2237ffa33aae7b8ed728c6b45c7566ce","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"f818a6ae2237ffa33aae7b8ed728c6b45c7566ce","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170524.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.0-dev.20170524.tgz_1495606458418_0.5361861803103238"},"directories":{}},"2.4.0-dev.20170525":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170525","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ebbfca98479cf553cbb4f2483cb42749e0445706","_id":"typescript@2.4.0-dev.20170525","_shasum":"e16405f2e73ea44e19cdab26c503e048bc2f33b1","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e16405f2e73ea44e19cdab26c503e048bc2f33b1","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170525.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.0-dev.20170525.tgz_1495692835269_0.2893072769511491"},"directories":{}},"2.4.0-dev.20170526":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170526","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"068256b8b080ee1b0e9c376a27ccfcd45d9a2fd1","_id":"typescript@2.4.0-dev.20170526","_shasum":"54a5f19be127c3b654e056336f2144b26a234702","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"54a5f19be127c3b654e056336f2144b26a234702","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170526.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.0-dev.20170526.tgz_1495779247431_0.28441603551618755"},"directories":{}},"2.4.0-dev.20170527":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170527","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"bcf84f49589eb00decd0567efcd6d9eb789d5452","_id":"typescript@2.4.0-dev.20170527","_shasum":"5820981349f3fdac44f7c74702888ad66c0dae09","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5820981349f3fdac44f7c74702888ad66c0dae09","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170527.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.0-dev.20170527.tgz_1495865732654_0.5217105017509311"},"directories":{}},"2.4.0-dev.20170528":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170528","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"bcf84f49589eb00decd0567efcd6d9eb789d5452","_id":"typescript@2.4.0-dev.20170528","_shasum":"39c710d0d36dbe0a6f3b285a29a5ca912f33269a","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"39c710d0d36dbe0a6f3b285a29a5ca912f33269a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170528.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.0-dev.20170528.tgz_1495952126366_0.9542548106983304"},"directories":{}},"2.4.0-dev.20170529":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170529","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"bcf84f49589eb00decd0567efcd6d9eb789d5452","_id":"typescript@2.4.0-dev.20170529","_shasum":"602da5a441a922dbc652272b49241096a780030b","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"602da5a441a922dbc652272b49241096a780030b","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170529.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.0-dev.20170529.tgz_1496038484122_0.7580587721895427"},"directories":{}},"2.4.0-dev.20170530":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170530","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"bcf84f49589eb00decd0567efcd6d9eb789d5452","_id":"typescript@2.4.0-dev.20170530","_shasum":"7191e199debb180eaeff543e12a74cf0f63da024","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"7191e199debb180eaeff543e12a74cf0f63da024","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170530.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.0-dev.20170530.tgz_1496124908301_0.32724879309535027"},"directories":{}},"2.3.4":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.3.4","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"next","typescript":"^2.3.3"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"1a579d929f1d0ee4d45de7cee505970a24a40cc7","_id":"typescript@2.3.4","_shasum":"3d38321828231e434f287514959c37a82b629f42","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"3d38321828231e434f287514959c37a82b629f42","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.3.4.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.3.4.tgz_1496178348815_0.7538054259493947"},"directories":{}},"2.4.0-dev.20170531":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170531","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"1cc860d88ccaf4008185530eab2f3c20d89be4b4","_id":"typescript@2.4.0-dev.20170531","_shasum":"2fe549be0e5e6af9d0159fc20c4de84ba0bd7a2d","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"2fe549be0e5e6af9d0159fc20c4de84ba0bd7a2d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170531.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.0-dev.20170531.tgz_1496211329078_0.46013076952658594"},"directories":{}},"2.4.0-dev.20170601":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170601","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"928da675aca56fc0d9eab42e7fe6fa12859d3849","_id":"typescript@2.4.0-dev.20170601","_shasum":"9bac807d61a6a02340264ebaaefca08606d22b61","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"9bac807d61a6a02340264ebaaefca08606d22b61","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170601.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.0-dev.20170601.tgz_1496297695557_0.7038231657352298"},"directories":{}},"2.4.0-dev.20170602":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170602","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"b62e1b57455562da9b8e1d2ab102753400820c87","_id":"typescript@2.4.0-dev.20170602","_shasum":"ad5276b2038d3526b6664dde3eec25a2d80fb568","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ad5276b2038d3526b6664dde3eec25a2d80fb568","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170602.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.0-dev.20170602.tgz_1496384203814_0.552362612914294"},"directories":{}},"2.4.0-dev.20170603":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170603","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"5ea8466103747fe38e846999577bbb0f2ce1b553","_id":"typescript@2.4.0-dev.20170603","_shasum":"206f9b2b4941d894f9f7f78560bebb2a8a5ce0d9","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"206f9b2b4941d894f9f7f78560bebb2a8a5ce0d9","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170603.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.0-dev.20170603.tgz_1496470543921_0.6570289363153279"},"directories":{}},"2.4.0-dev.20170604":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170604","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"5ea8466103747fe38e846999577bbb0f2ce1b553","_id":"typescript@2.4.0-dev.20170604","_shasum":"958dd881a1237fa98210a0183dc9e36bf2d55e81","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"958dd881a1237fa98210a0183dc9e36bf2d55e81","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170604.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.0-dev.20170604.tgz_1496556927105_0.20389424357563257"},"directories":{}},"2.4.0-dev.20170605":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170605","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a76b4b1f28ec4c6af5aaaca092116691af89962e","_id":"typescript@2.4.0-dev.20170605","_shasum":"3784b5edb80bf030cac673f3326852b5306d2467","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"3784b5edb80bf030cac673f3326852b5306d2467","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170605.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.0-dev.20170605.tgz_1496643296641_0.2915412576403469"},"directories":{}},"2.4.0-dev.20170606":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170606","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a6e1cedfd7d9fe423019a53980668612bf14bfa0","_id":"typescript@2.4.0-dev.20170606","_shasum":"ba4564118523aa6de4d1ca514d9911e78e051f46","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ba4564118523aa6de4d1ca514d9911e78e051f46","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170606.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.0-dev.20170606.tgz_1496729715025_0.2007577084004879"},"directories":{}},"2.4.0-dev.20170607":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170607","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6007eb7dfb816cf2d021f0057cda2dd1c62b352b","_id":"typescript@2.4.0-dev.20170607","_shasum":"5286a741bb5df1c4425c1b107fb3efa95ed35ce8","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5286a741bb5df1c4425c1b107fb3efa95ed35ce8","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170607.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.0-dev.20170607.tgz_1496816083540_0.852469478501007"},"directories":{}},"2.4.0-dev.20170608":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170608","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"158a6371e934a173a65d7524d99d22cf48799308","_id":"typescript@2.4.0-dev.20170608","_shasum":"a6e7eff5ec3ba9f43eb10907b2d1bda4326bb65a","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"a6e7eff5ec3ba9f43eb10907b2d1bda4326bb65a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170608.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.0-dev.20170608.tgz_1496902510265_0.803620767313987"},"directories":{}},"2.4.0-dev.20170609":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170609","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"0d36d0e39fc9b9833a61b51d66be1f762fa8f454","_id":"typescript@2.4.0-dev.20170609","_shasum":"17dc560bf9817e27d002ed49330d5421487203d5","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"17dc560bf9817e27d002ed49330d5421487203d5","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170609.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.0-dev.20170609.tgz_1496988882960_0.277833839179948"},"directories":{}},"2.4.0-dev.20170610":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170610","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"09321b3834af09d7ae55ee86c7664850f189a708","_id":"typescript@2.4.0-dev.20170610","_shasum":"95d03a7c8ae3fbdd24c981e4a2d86c88985716ad","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"95d03a7c8ae3fbdd24c981e4a2d86c88985716ad","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170610.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.0-dev.20170610.tgz_1497075087607_0.27730330103076994"},"directories":{}},"2.4.0-dev.20170611":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170611","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a404edae384f758e604a9457a9476de613436b68","_id":"typescript@2.4.0-dev.20170611","_shasum":"fc5064e14705c15f0dbad9b9051e3a093b684285","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"fc5064e14705c15f0dbad9b9051e3a093b684285","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170611.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.0-dev.20170611.tgz_1497161884706_0.37688726815395057"},"directories":{}},"2.4.0-dev.20170612":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0-dev.20170612","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a404edae384f758e604a9457a9476de613436b68","_id":"typescript@2.4.0-dev.20170612","_shasum":"c81152dac3d4a2962dfc128a8d87cf7873ecb284","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"c81152dac3d4a2962dfc128a8d87cf7873ecb284","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0-dev.20170612.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.0-dev.20170612.tgz_1497248288643_0.08571731275878847"},"directories":{}},"2.4.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.0","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"14fa6ac8eb5a8aed75865ee3a5a9f7caf6353aa2","_id":"typescript@2.4.0","_shasum":"aef5a8d404beba36ad339abf079ddddfffba86dd","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"aef5a8d404beba36ad339abf079ddddfffba86dd","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.0.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.0.tgz_1497295633780_0.158932140795514"},"directories":{}},"2.5.0-dev.20170613":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170613","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"1d0087dd2d04e48e52f08c85e0489af6e683e56c","_id":"typescript@2.5.0-dev.20170613","_shasum":"0819ffc7be1617b10728154dba65568ec454fd12","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"0819ffc7be1617b10728154dba65568ec454fd12","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170613.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170613.tgz_1497334606000_0.8287351259496063"},"directories":{}},"2.5.0-dev.20170614":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170614","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"fbe002a59534a522330d047b367409d57d3fc97d","_id":"typescript@2.5.0-dev.20170614","_shasum":"eb77ed212a5e49ebc8392ba0a95713ef87d9f6f1","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"eb77ed212a5e49ebc8392ba0a95713ef87d9f6f1","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170614.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170614.tgz_1497421009104_0.2152184033766389"},"directories":{}},"2.4.1-insiders.20170614":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.1-insiders.20170614","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"^2.4"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"ed9cde9845cdbdc58ae40077ca59b436a4765c60","_id":"typescript@2.4.1-insiders.20170614","_shasum":"4f12ed67ba4230a9c0c03c30c46345e7cf585087","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"4f12ed67ba4230a9c0c03c30c46345e7cf585087","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.1-insiders.20170614.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.1-insiders.20170614.tgz_1497484895443_0.7764965672977269"},"directories":{}},"2.5.0-dev.20170615":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170615","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"26ab0cd138cb4570ac80b2355c562bb39cb294a4","_id":"typescript@2.5.0-dev.20170615","_shasum":"30babe46483cb1ec742c397e2c9910532cb145a4","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"30babe46483cb1ec742c397e2c9910532cb145a4","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170615.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170615.tgz_1497507288722_0.48306851112283766"},"directories":{}},"2.4.1-insiders.20170615":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.1-insiders.20170615","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"^2.4"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"0968ed97ad4eeb27f9417d071ca8cf1c521ebb56","_id":"typescript@2.4.1-insiders.20170615","_shasum":"1cf1dfa212b1ecf557a1192525633f1966b21daf","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"1cf1dfa212b1ecf557a1192525633f1966b21daf","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.1-insiders.20170615.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.1-insiders.20170615.tgz_1497568087897_0.27685667341575027"},"directories":{}},"2.5.0-dev.20170616":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170616","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"31653de3c391e08f3f326abc77ede73532c42bd9","_id":"typescript@2.5.0-dev.20170616","_shasum":"6bf9b32b28c1cb181f45affcd51d057b97c2867e","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"6bf9b32b28c1cb181f45affcd51d057b97c2867e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170616.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170616.tgz_1497593548188_0.6918158680200577"},"directories":{}},"2.5.0-dev.20170617":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170617","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a2776648cd48d4937b076fb8b3e935d3d5fb27e1","_id":"typescript@2.5.0-dev.20170617","_shasum":"5c72d3d4ea278f8db662f513c6911cd31378f024","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"5c72d3d4ea278f8db662f513c6911cd31378f024","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170617.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170617.tgz_1497680008788_0.029210101114585996"},"directories":{}},"2.5.0-dev.20170618":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170618","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a2776648cd48d4937b076fb8b3e935d3d5fb27e1","_id":"typescript@2.5.0-dev.20170618","_shasum":"e94cf09b2048705026964dcb20dc0d83e90581ab","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e94cf09b2048705026964dcb20dc0d83e90581ab","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170618.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170618.tgz_1497766378237_0.06250596581958234"},"directories":{}},"2.5.0-dev.20170619":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170619","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a2776648cd48d4937b076fb8b3e935d3d5fb27e1","_id":"typescript@2.5.0-dev.20170619","_shasum":"6f473787affba5252601081cc22caaed0d8fc9e6","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"6f473787affba5252601081cc22caaed0d8fc9e6","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170619.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170619.tgz_1497852763394_0.7942032963037491"},"directories":{}},"2.5.0-dev.20170621":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170621","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"f1fb1b9ed94b8880f48cfcbb40f6117b14c44831","_id":"typescript@2.5.0-dev.20170621","_shasum":"e735c4d23386fd1b31006608d9525ad97729f30b","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"e735c4d23386fd1b31006608d9525ad97729f30b","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170621.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170621.tgz_1498025629869_0.48150102607905865"},"directories":{}},"2.5.0-dev.20170622":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170622","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"f1fb1b9ed94b8880f48cfcbb40f6117b14c44831","_id":"typescript@2.5.0-dev.20170622","_shasum":"bacc72fd035603f5be0b6a4e0d3e38f0624fecfe","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"bacc72fd035603f5be0b6a4e0d3e38f0624fecfe","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170622.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170622.tgz_1498111963251_0.7094265660271049"},"directories":{}},"2.5.0-dev.20170623":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170623","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6a111928b4dd40144b2d091016175ebcf5b65cf1","_id":"typescript@2.5.0-dev.20170623","_shasum":"b52cb8bc008e3e23801f32599eee608c9b3e7e15","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"b52cb8bc008e3e23801f32599eee608c9b3e7e15","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170623.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170623.tgz_1498198395801_0.08560115844011307"},"directories":{}},"2.5.0-dev.20170624":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170624","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"fd22a88abcbca57c3a2961955537904481c9c62b","_id":"typescript@2.5.0-dev.20170624","_shasum":"21fe9e20cb239bea79f2a945330009b646bf6112","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"21fe9e20cb239bea79f2a945330009b646bf6112","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170624.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170624.tgz_1498285047483_0.8907331405207515"},"directories":{}},"2.5.0-dev.20170625":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170625","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"fd22a88abcbca57c3a2961955537904481c9c62b","_id":"typescript@2.5.0-dev.20170625","_shasum":"86e3b7242a8f1973c02b79cc03886e7b4166c8a7","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"86e3b7242a8f1973c02b79cc03886e7b4166c8a7","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170625.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170625.tgz_1498371252336_0.1582546541467309"},"directories":{}},"2.5.0-dev.20170626":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170626","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"fd22a88abcbca57c3a2961955537904481c9c62b","_id":"typescript@2.5.0-dev.20170626","_shasum":"138dcf6f3e1885b656bcd6445305f3df9e0039b5","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"138dcf6f3e1885b656bcd6445305f3df9e0039b5","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170626.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170626.tgz_1498457575110_0.5473527244757861"},"directories":{}},"2.5.0-dev.20170627":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170627","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"aeb5264b74658c976165699db1489bdc65675533","_id":"typescript@2.5.0-dev.20170627","_shasum":"da16f7b25521b429f2bef3169995f8aa0f6fb74a","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"da16f7b25521b429f2bef3169995f8aa0f6fb74a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170627.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170627.tgz_1498543998499_0.15347767365165055"},"directories":{}},"2.4.1":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.1","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"^2.4"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"8b2fe136f8cac532445bb3de89abd134592172d1","_id":"typescript@2.4.1","_shasum":"c3ccb16ddaa0b2314de031e7e6fee89e5ba346bc","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"c3ccb16ddaa0b2314de031e7e6fee89e5ba346bc","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.1.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.1.tgz_1498582143995_0.344432222424075"},"directories":{}},"2.5.0-dev.20170628":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170628","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"e52b996484770dc2c051e9735f33dac8b0697713","_id":"typescript@2.5.0-dev.20170628","_shasum":"3d6951f6bce326d9e72dca3ce60ea80bdbc4a799","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"3d6951f6bce326d9e72dca3ce60ea80bdbc4a799","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170628.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170628.tgz_1498630475317_0.6575480056926608"},"directories":{}},"2.5.0-dev.20170629":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170629","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"51fb7e9a81a8821f2219cf68591faf36c66e01fa","_id":"typescript@2.5.0-dev.20170629","_shasum":"ebdcdab19a7d109bf2ca0545761b0410430c8ae0","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"dist":{"shasum":"ebdcdab19a7d109bf2ca0545761b0410430c8ae0","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170629.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170629.tgz_1498716816922_0.8733491846360266"},"directories":{}},"2.4.1-insiders.20170630":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.1-insiders.20170630","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"^2.4"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"8b2fe136f8cac532445bb3de89abd134592172d1","_id":"typescript@2.4.1-insiders.20170630","_shasum":"a4bdde1fc8bdf5f3626c5183a0959cd31aaf0603","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"a4bdde1fc8bdf5f3626c5183a0959cd31aaf0603","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.1-insiders.20170630.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.1-insiders.20170630.tgz_1498858916100_0.4537896611727774"},"directories":{}},"2.4.2-insiders.20170630":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.2-insiders.20170630","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"^2.4"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"8b2fe136f8cac532445bb3de89abd134592172d1","_id":"typescript@2.4.2-insiders.20170630","_shasum":"1a0dee346f27083a1db9a29ac06601c2e7914e82","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"1a0dee346f27083a1db9a29ac06601c2e7914e82","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.2-insiders.20170630.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.2-insiders.20170630.tgz_1498859300734_0.9975741151720285"},"directories":{}},"2.5.0-dev.20170707":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170707","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d4c11bfa1b1e9b15d5f02211b37e590e38a9a2e2","_id":"typescript@2.5.0-dev.20170707","_shasum":"f915e2f1e3ced9077adaefa0867392d063970fa2","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"f915e2f1e3ced9077adaefa0867392d063970fa2","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170707.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170707.tgz_1499452226907_0.2818260572385043"},"directories":{}},"2.5.0-dev.20170712":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170712","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"38f6db52ac30f9dedbaf45565260e16d9add051a","_id":"typescript@2.5.0-dev.20170712","_shasum":"bd6bfd67bd532dd5c6cdd976a42c343c8da705cd","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"bd6bfd67bd532dd5c6cdd976a42c343c8da705cd","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170712.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170712.tgz_1499844559782_0.8934026737697423"},"directories":{}},"2.4.2-insiders.20170719":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.2-insiders.20170719","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"^2.4"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6105867bb05abc365d8d7f4fbd03e14a8d50117e","_id":"typescript@2.4.2-insiders.20170719","_shasum":"30e0912a37e61a851045d31a46a9bec3a1c15590","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"30e0912a37e61a851045d31a46a9bec3a1c15590","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.2-insiders.20170719.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.2-insiders.20170719.tgz_1500498187000_0.43802667362615466"},"directories":{}},"2.4.2":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.4.2","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"latest","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"latest","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"^2.4"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"6105867bb05abc365d8d7f4fbd03e14a8d50117e","_id":"typescript@2.4.2","_shasum":"f8395f85d459276067c988aa41837a8f82870844","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"f8395f85d459276067c988aa41837a8f82870844","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.4.2.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.4.2.tgz_1500500117839_0.337849831674248"},"directories":{}},"2.5.0-dev.20170719":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170719","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"f37d9068ff14a2d8a4955d4a872b8ee33046d388","_id":"typescript@2.5.0-dev.20170719","_shasum":"2976f0e8961a86d79c8fc55d007d6e286505954f","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"2976f0e8961a86d79c8fc55d007d6e286505954f","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170719.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170719.tgz_1500504031517_0.33982362947426736"},"directories":{}},"2.5.0-dev.20170725":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170725","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"d74cb24640e622a6b2171abab93d26e1726fe1ed","_id":"typescript@2.5.0-dev.20170725","_shasum":"bff038db3910533cf57d5b245f6bcbd657dc3f29","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"bff038db3910533cf57d5b245f6bcbd657dc3f29","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170725.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170725.tgz_1501005192726_0.16440121550112963"},"directories":{}},"2.5.0-dev.20170727":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170727","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"977d907417006c8698a0ce346195cda2d4a87361","_id":"typescript@2.5.0-dev.20170727","_npmVersion":"5.0.3","_nodeVersion":"8.1.4","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-HJuDc/hRGrAsGBSjdo5hMdKNs6SW0vC90Z11UizASp25ecJR5Wht+7yMoHBbt0cUFNzbQjXC9XQ5BfYnNmbZKQ==","shasum":"07357cb534fbb20df7d5b7ed5b0602359c9e1db9","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170727.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170727.tgz_1501177903435_0.2618401749059558"},"directories":{}},"2.5.0-dev.20170731":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170731","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"f945b26b540c264c769e2241826221917071d46b","_id":"typescript@2.5.0-dev.20170731","_npmVersion":"5.3.0","_nodeVersion":"8.1.4","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-UER8sKLiiQHm+2lf1PBOfeGWPukhqrmIcZ8SGNWRZ7PpPTZepvbgq8wJwPM6dMocs1CtdmkA+fqfVkL3GRTNtA==","shasum":"9b966de87df7c564e013efd654cb81204ba6356e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170731.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170731.tgz_1501520773114_0.1292343782261014"},"directories":{}},"2.5.0-dev.20170801":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170801","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","into-stream":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"b74ec1c58b1c01e9331422315a7451d8eaee1ac1","_id":"typescript@2.5.0-dev.20170801","_npmVersion":"5.0.3","_nodeVersion":"8.1.4","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-LqJNvQzmzQ5VH1Roh4SNyirfmZcsDMsMUQdlX8flYZWmkcGsNKt06nukOvkQrmLnynrwFSoDCdsITInqUivvmg==","shasum":"fec0f6da5826e90784391626dc76df0f3c032d08","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170801.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170801.tgz_1501611907971_0.894744741730392"},"directories":{}},"2.5.0-dev.20170803":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170803","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"15527619823f191aaef8e3324cc6c0d460909a09","_id":"typescript@2.5.0-dev.20170803","_npmVersion":"5.0.3","_nodeVersion":"8.1.4","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-Jmcaeth43JUaVtjzjPeJsrKRjfCLz6CGBsskbj6UjwrhCWnJs/G0V/UCfshwFSYRuQjI+HoAlwkZj9Kijc0LCg==","shasum":"ac8f506f46ee04e66fff4eeb6b79ba90c03d33e7","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170803.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170803.tgz_1501782569561_0.4590054606087506"},"directories":{}},"2.5.0-dev.20170807":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170807","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"a453eff575a18a94a22bd3c908a6df0e1c3dc392","_id":"typescript@2.5.0-dev.20170807","_npmVersion":"5.0.3","_nodeVersion":"8.1.4","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-NAb8DjK9lA3dWeFDapZYJEyR9xXLgTZWeQyPq8uX2Gf1vfF1Gu6Fx3B93yoACZDfvMtPAThcqfB99JKIKDfEig==","shasum":"b6aeb59066b5200d318adbb3cca64648d0c63812","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170807.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170807.tgz_1502125972130_0.3852668828330934"},"directories":{}},"2.5.0-dev.20170808":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170808","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"buffer":false,"fs":false,"os":false,"path":false},"gitHead":"3deb39bba6bfa7dc0482bf1a6ad4494ed04dc3c1","_id":"typescript@2.5.0-dev.20170808","_npmVersion":"5.3.0","_nodeVersion":"8.1.4","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-Gb+2vCDs47CMtRzpoc41Uia4UDV4biDYZo9Z5nTwINftcI96FecFCQgJQAMLF8G4bKR4pwKmOuiSN1JyGInN3A==","shasum":"89e017e404b058414d0b992cedfd2d9865164a75","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170808.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170808.tgz_1502227864822_0.4436050308868289"},"directories":{}},"2.5.0-dev.20170815":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170815","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"7409648416b2eff6173c24ab530948f002c42c96","_id":"typescript@2.5.0-dev.20170815","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-hiBnt3zdLo3liDWHVHFp3R26drPDgChejIrUYyRnZ0tI/nCG3EbJiVMV/YGQo4KQTM5U37KGqkN/FdE1FY/NGg==","shasum":"ea5884dcc0766cfab609b1fb08a0d2b1b39d2c41","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170815.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170815.tgz_1502819606886_0.5707058594562113"},"directories":{}},"2.5.0-dev.20170816":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0-dev.20170816","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"ce2ac1751e044316066286c285818ff2d9cbbca6","_id":"typescript@2.5.0-dev.20170816","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-7H+5j8lTRgwcYz5IppnDw8Lei0odIdpAq2Fj71Miusk3RuZyxKgWvD1g1SOcJyWiT+Z/EjWFzVbH0VJLtVd8HQ==","shasum":"a569a9cb7b484ada4006c2cd4a0139bada93af7c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0-dev.20170816.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0-dev.20170816.tgz_1502894604033_0.7334152809344232"},"directories":{}},"2.6.0-dev.20170817":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170817","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"babb88a0aa4f240baee1264f68e77f1a5be67bfb","_id":"typescript@2.6.0-dev.20170817","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-MZ6HqMi+yP4vgdtOTrcIIGAhHx7BXDskyXM7To7MeOM6OG8AaUj6vDrNPrv+zSb/FHHvwoWQYOJtEIQKMrTr2g==","shasum":"dc9ec8bd893f20ebf79745bf152857b424a5f74d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170817.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170817.tgz_1502981953498_0.7536783607210964"},"directories":{}},"2.5.0":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.0","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"a5c9f40344d625ab3a86acad474fcc8474412fc0","_id":"typescript@2.5.0","_shasum":"60989e74cad93c28fe35f7f7b41fe9b205a25701","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"60989e74cad93c28fe35f7f7b41fe9b205a25701","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.0.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.0.tgz_1502992377510_0.32360745524056256"},"directories":{}},"2.6.0-dev.20170818":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170818","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"eef7d8bd3d974528464c7968deab78b747568c06","_id":"typescript@2.6.0-dev.20170818","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-AeXs7+Q4CMl7vhyUcUYo63JWt/MTv3lrNBfQkx2HNZbWZRl2PqlcoI716cicvRMXCuoyhamSyh22SA07w5Zl9A==","shasum":"2f169638e89e38b35dd6944de594c4e41dba77b7","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170818.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170818.tgz_1503067645106_0.661298593506217"},"directories":{}},"2.5.1":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.1","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"baeedab96c609ec3b48877b7f535b587e0f480c3","_id":"typescript@2.5.1","_shasum":"ce7cc93ada3de19475cc9d17e3adea7aee1832aa","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"ce7cc93ada3de19475cc9d17e3adea7aee1832aa","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.1.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.1.tgz_1503082167983_0.16344557818956673"},"directories":{}},"2.5.1-insiders.20170818":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.1-insiders.20170818","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"baeedab96c609ec3b48877b7f535b587e0f480c3","_id":"typescript@2.5.1-insiders.20170818","_shasum":"2ac5924f002a8a5176c18b7d4d8ddc78c2da4b6c","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"2ac5924f002a8a5176c18b7d4d8ddc78c2da4b6c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.1-insiders.20170818.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.1-insiders.20170818.tgz_1503094723642_0.472465283004567"},"directories":{}},"2.6.0-dev.20170819":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170819","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"5e8e735db55e82ff0cf4bddaf4f0fe6d8a4d39f7","_id":"typescript@2.6.0-dev.20170819","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-zo10SV0RPiIzAcr108qjczvcoTDI4MAhOgSI6MbAH2wOdvgMRqf7xkqf6GgfPAoM7uPT2D7vShfF+9QR8Inc3A==","shasum":"219a43fe5b3842f60e465a3b8af87bd9a1dcfc58","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170819.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170819.tgz_1503154016756_0.6348706351127476"},"directories":{}},"2.5.1-insiders.20170822":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.1-insiders.20170822","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"f5698fc9ab65f1b2cba1e0191b1e2c371844a45a","_id":"typescript@2.5.1-insiders.20170822","_shasum":"1d2e941776d15142d699cef4e209bf904a6aa50a","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"1d2e941776d15142d699cef4e209bf904a6aa50a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.1-insiders.20170822.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.1-insiders.20170822.tgz_1503362862792_0.2260023602284491"},"directories":{}},"2.6.0-dev.20170822":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170822","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"2b1078441570ac2ad18788d39422cdfdabeb2835","_id":"typescript@2.6.0-dev.20170822","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-RBKtNKF7czIAhmPLP0bp/lUUSY/PbEuM5zkzxNmItbgXSn+S90pxGKnwofrZYFoiudZc0dVTBV6EnlTXmMBX7w==","shasum":"808c45bf362228491da9fa0295b7c05eec1d2715","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170822.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170822.tgz_1503413075730_0.9618717215489596"},"directories":{}},"2.6.0-dev.20170823":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170823","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{"browser-resolve":"^1.11.2"},"gitHead":"8d44e48dd0f63a2f48bd5045d4833e709c299a3b","_id":"typescript@2.6.0-dev.20170823","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-CXMBkISao3hUdpO/mpBde4i5f4/H/tQyD8dA/YpL/44284LqWKEk8R1RHhnL0PbY0S+7ApMdaklhml3+zMh0Rw==","shasum":"e39a10e9928c467c452daccec574f7fa408e7227","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170823.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170823.tgz_1503500317997_0.16027968609705567"},"directories":{}},"2.6.0-dev.20170824":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170824","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{"browser-resolve":"^1.11.2"},"gitHead":"cd2ea9a12f2bf42fcd4747782b34543a6c36c08c","_id":"typescript@2.6.0-dev.20170824","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-lLus5j815vVk3ib7w399VFVyQ+6RwXUgZKNa7gkDdflkdXi5Ss2jbQq0P/64XX6DJ+OiT5gwLrXaGN+szxEM5w==","shasum":"c941c50612daa44d76d73f4bbcab70baf56dad26","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170824.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170824.tgz_1503586029679_0.5719394437037408"},"directories":{}},"2.6.0-dev.20170825":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170825","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{"browser-resolve":"^1.11.2"},"gitHead":"62eaaf92069dc450128cd93320db877460722fde","_id":"typescript@2.6.0-dev.20170825","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-lqC2EiQ4kV3MwPFGmku4mzHRHXilf/do6quUYytd9uQN2Gwp7PZKCh4dK1s+VHe2o3C64IKNKZZNhtChysiguw==","shasum":"031ec551b4118e17a5969a8adf9c9481412c7b5b","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170825.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170825.tgz_1503672911731_0.3976198988966644"},"directories":{}},"2.5.1-insiders.20170825":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.1-insiders.20170825","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"2a2773fbb40653fba294fd690c9ea4d602c79f81","_id":"typescript@2.5.1-insiders.20170825","_shasum":"1a353093e4c4806b139f2706a3c10399d02c3706","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"1a353093e4c4806b139f2706a3c10399d02c3706","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.1-insiders.20170825.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.1-insiders.20170825.tgz_1503700963882_0.87099987315014"},"directories":{}},"2.6.0-dev.20170826":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170826","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{"browser-resolve":"^1.11.2"},"gitHead":"a32d99dfc8da65565ea037e76770f0dd2711a735","_id":"typescript@2.6.0-dev.20170826","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-QDEA+/GuGgtLGkIbXbmXJr9sff7jHET0FV5Hut5EB7Ti8oroyuNIDU1DIic/FtQOuPlyA96n3qVmSXe9ol2++g==","shasum":"4dd23e502f915496c245d558eb0feb13605ac432","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170826.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170826.tgz_1503759011862_0.9020352093502879"},"directories":{}},"2.6.0-dev.20170829":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170829","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","browser-resolve":"^1.11.2","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"3ea031cf1cd8cbef03d02261bdc50e1b9a62276a","_id":"typescript@2.6.0-dev.20170829","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-mmHkDLs67phJUnIJ9QihFPafSnxJWCY7J5uDTsgc5Xg8GaQnAkRanmG03sAh24qKXOGk5ndugz2CmbCf56cQSg==","shasum":"af3900993978d443bd39121509f22df4369e844c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170829.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170829.tgz_1504018669764_0.4772330252453685"},"directories":{}},"2.6.0-dev.20170830":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170830","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","browser-resolve":"^1.11.2","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"27e590dd5ec517007c3eb0d00b497233e63132d4","_id":"typescript@2.6.0-dev.20170830","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-15GiU986suiDKa264HRFuMR2y2jAuN7a7E1DfalkzdezEcq+b6wsV9VOrhT7IhHQCJDGFEkFYgUCgbroPWidBQ==","shasum":"d2672549fa1568db5eb2b3437f5ed635ca15a55b","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170830.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170830.tgz_1504104825119_0.39269257872365415"},"directories":{}},"2.6.0-dev.20170831":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170831","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","browser-resolve":"^1.11.2","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"4c543230c6b01a755c362bad7255a655821fed31","_id":"typescript@2.6.0-dev.20170831","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-pJinwANv8d2ePk8QvAoicrjXsj4H0cxgDP/GmXpdlCL0XZ2KYIwKiot9w2nyoCM9rrZ9OuYxmzlkT3KpG1Cxow==","shasum":"43b57e5ede485aaecf57a258bc4f8066eec2b1ed","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170831.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170831.tgz_1504191139221_0.42834356031380594"},"directories":{}},"2.5.2":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.2","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"171c664fefd945301ab0aaf287b3d1f288c67900","_id":"typescript@2.5.2","_shasum":"038a95f7d9bbb420b1bf35ba31d4c5c1dd3ffe34","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"038a95f7d9bbb420b1bf35ba31d4c5c1dd3ffe34","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.2.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.2.tgz_1504197626785_0.12888751062564552"},"directories":{}},"2.6.0-dev.20170901":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170901","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","browser-resolve":"^1.11.2","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"c7b4ed3a91964915b953b34ad2ae72f36e7d6efe","_id":"typescript@2.6.0-dev.20170901","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-futB+1BkGh06e75CpcdCOgB188oZ9ieaecTGL04pxJHlx5wy7Y4a/o5O8aLJEwllrXJgUvDemMMRI4MWwydbYQ==","shasum":"008e5c1b4a2ca1f5f2ffaeb867611aca14618801","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170901.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170901.tgz_1504277589428_0.5665403136517853"},"directories":{}},"2.6.0-dev.20170902":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170902","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","browser-resolve":"^1.11.2","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"541920eb314e200fb0b5ba989359e8fb7f6f8a4c","_id":"typescript@2.6.0-dev.20170902","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-7P6DWJnxKtjll270Uxx1tJFDO9DcFX7EwZR1Z2HGekl2DSaiS6ZFfitHgdeemfh5imqna4z7ccQF5vOKOhGGXg==","shasum":"039bb81ff445a3048564816b5496f4d43d839cb7","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170902.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170902.tgz_1504363574271_0.843000358203426"},"directories":{}},"2.6.0-dev.20170904":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170904","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","browser-resolve":"^1.11.2","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"1edecac0aba9486d8497a5ab592c39fc32a6a635","_id":"typescript@2.6.0-dev.20170904","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-xd0k7yuB0+DvjYMvUsE5p4NBID0YZi0RXSDGHkHZT+QU+YktA+dDtTM9eMNgbaOIg5PuxZFdZBc6bktAptQSVg==","shasum":"541cfafe30460ea9e0db24e5a04d61d3b0737856","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170904.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170904.tgz_1504536512624_0.25852116104215384"},"directories":{}},"2.6.0-dev.20170906":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170906","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","browser-resolve":"^1.11.2","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"d790f1d9d36aa60545296ae8c8dff6d92d34b2e6","_id":"typescript@2.6.0-dev.20170906","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-ddIhI4462HWNCrb/tUQDCXVuoUYZ8kmeCFjipfPrdHvG72Kd1AezmMCSixU+GTIezzhLFJqxBwfAEq9k42H6lg==","shasum":"cd0a13368fd76d3f469e402f5b07199f66d395b4","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170906.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170906.tgz_1504709744615_0.9891123035922647"},"directories":{}},"2.6.0-dev.20170907":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170907","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","browser-resolve":"^1.11.2","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"b533b24686d5f2c799e2c5edf6283243b6a8d2df","_id":"typescript@2.6.0-dev.20170907","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-2zGxr+tSPyvu0RVuC3Tl7gx5SmNQL05eAutjQJHSTvz/fE3Y3bnW3n9+u81vNnpzoBQ9M6Y6TBbyfNr1+LP7Qw==","shasum":"7fc5e641c8670c68ef48fa297b35a0f611e1c685","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170907.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170907.tgz_1504795786265_0.41996534704230726"},"directories":{}},"2.5.3-insiders.20170908":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.3-insiders.20170908","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"655145ca58b4b4bc3c9b101b4959c5637a61c8e3","_id":"typescript@2.5.3-insiders.20170908","_shasum":"95ab62d6aad9e6f0d7a039b33925a0d385ee0c8d","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"95ab62d6aad9e6f0d7a039b33925a0d385ee0c8d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.3-insiders.20170908.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.3-insiders.20170908.tgz_1504829181119_0.009933083783835173"},"directories":{}},"2.6.0-dev.20170908":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170908","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","browser-resolve":"^1.11.2","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"02cfb81ac0c9b870d31be14b16b0a08ea24ed32a","_id":"typescript@2.6.0-dev.20170908","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-Ik2B9MWdfG1P6TWq5umytEyPJqangpEQ0xxaE9RJGmpbBAokL+j3xW1BUxhShB2SYBZDmiNW72/0yQwuR2LFJg==","shasum":"6347ba004c0f7335bea35d6d5b405fad933bbe25","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170908.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170908.tgz_1504851041947_0.36501152510754764"},"directories":{}},"2.5.3-insiders.20170909":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.3-insiders.20170909","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"c476a08188be95273037838d9d7cdb750e39924d","_id":"typescript@2.5.3-insiders.20170909","_shasum":"ec192d0a7c2948489f98b9169966333f45fdf647","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"ec192d0a7c2948489f98b9169966333f45fdf647","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.3-insiders.20170909.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.3-insiders.20170909.tgz_1504918202005_0.3444040399044752"},"directories":{}},"2.6.0-dev.20170909":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170909","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","browser-resolve":"^1.11.2","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"409d6597ebde2fce5673c9704907e339c8a5dc2d","_id":"typescript@2.6.0-dev.20170909","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-aV8r0BmnlqTuMO3Dgs12TKE4eu9xmsquQ4KnWkzrh0G3vYhCcQ/uul8ZM33FnjToUtJLaKuRKYgXhzeNTNsyGw==","shasum":"0e5e6ff4b7f964f1e876d15d48742678daac4c8f","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170909.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170909.tgz_1504937442041_0.8490883414633572"},"directories":{}},"2.6.0-dev.20170910":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170910","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","browser-resolve":"^1.11.2","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"eb80799ef0e2e47d8a1ae74f395d1fcadd263340","_id":"typescript@2.6.0-dev.20170910","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-L2VE1pe1UG1X3o29MFk/UkK7ePui+tZIXeQ8NKjFqFb1mCoQ3u3bzkRx1t3sq1epGGUlkep+er60l01G3oAovQ==","shasum":"caa83f1ecee5dcbb950f28c370f482eb3770a672","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170910.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170910.tgz_1505023784729_0.4940042616799474"},"directories":{}},"2.6.0-dev.20170912":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170912","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","browser-resolve":"^1.11.2","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"2fbc2259a120c7be22397f01b6f99ce3c4306536","_id":"typescript@2.6.0-dev.20170912","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-j+yNuRMlQlUdehdToVOda0ExJ+Mb1LeMp/j3ZZT8+FmDcbJxxX5wWBzjjJYn0CBL9llLkVpVuAfRCewYQZ1/Bg==","shasum":"ee362716445f7864473f9fdfc8abc051f9f0e5cc","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170912.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170912.tgz_1505196602031_0.31803425145335495"},"directories":{}},"2.6.0-dev.20170913":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170913","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","browser-resolve":"^1.11.2","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"f2c81cc4f4068ef30b1f38da503887e44be03ac9","_id":"typescript@2.6.0-dev.20170913","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-2qJp4Qg9BxnjClMYpkwMCBmFgJ6i94l8p5onOryv5Iiag3VenfwgBa9ONMY8s04AVnBTD8tZPNokZY1HAymZYw==","shasum":"723a7cf648481bf5dd763bd60a81a86c9417a052","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170913.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170913.tgz_1505282950404_0.06867827312089503"},"directories":{}},"2.6.0-dev.20170914":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170914","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","browser-resolve":"^1.11.2","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"be5c00f4c9626848fe8e812aad32b86020c296bc","_id":"typescript@2.6.0-dev.20170914","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-WzNhZEHbT8rjt1t2g6v3Y9zWwkgfqyDR/XcFalDfaG4UxKznjrabdKJ27SJbkQe9cZacAplpIlMHPW/KzGzHzQ==","shasum":"4f01c8303be9b61f22d4614ea323035a2fc1b8a6","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170914.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170914.tgz_1505369341623_0.07892251969315112"},"directories":{}},"2.6.0-dev.20170915":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170915","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","browser-resolve":"^1.11.2","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"fd4a8d1516e5e5ae8c0c8b7f47ed4191a1799e68","_id":"typescript@2.6.0-dev.20170915","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-NAfnuKDjex4HM5Ug8ftLtCORX+HTPH5AW5DUqommA/g0xPQLslwO9no/eX3StmFrnRpqxjNB25h4WCFeuasTCg==","shasum":"3d1bceac42f833af844e36dd9ca17c2d7d006d26","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170915.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170915.tgz_1505455848509_0.17834743740968406"},"directories":{}},"2.6.0-dev.20170916":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170916","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","browser-resolve":"^1.11.2","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"0ac8406cd7896f347e17576e7f6c99e767cb35d1","_id":"typescript@2.6.0-dev.20170916","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-vS2ZnfmOcxDWykW9tHCPNgfjhdrgrw4XZ3uM7wrThxYjh8MI+xDbp1jwLc6kSMSFayTXfuV9UnztRWNa+TqoKw==","shasum":"a341a4969bbcf1b0cf19e55bc91cd55082abd37e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170916.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170916.tgz_1505542174487_0.7293181656859815"},"directories":{}},"2.6.0-dev.20170919":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170919","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","browser-resolve":"^1.11.2","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"21bbee4044b792bd835423dbb3db6608ae492d24","_id":"typescript@2.6.0-dev.20170919","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-JuWdfW+tUzvJfk+EruNNYwh8eVtKRfAwrHr6yf3Oz+Cc3CFn10tgcIqWH6j3wkjDssCIcCO5w3CWIrQ+nmt0nA==","shasum":"08574044531d223fc781f7e517eb7de435f8b10a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170919.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170919.tgz_1505801388816_0.4943979496601969"},"directories":{}},"2.5.3-insiders.20170919":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.3-insiders.20170919","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"^2.5"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"4a63ed7afa7361db95661c552114c70b75f56879","_id":"typescript@2.5.3-insiders.20170919","_shasum":"eb3c26c12db206f4c36a85ea7d2c142e3c4dd72e","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"eb3c26c12db206f4c36a85ea7d2c142e3c4dd72e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.3-insiders.20170919.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.3-insiders.20170919.tgz_1505863483759_0.9550785711035132"},"directories":{}},"2.6.0-dev.20170920":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170920","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","browser-resolve":"^1.11.2","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"8245597bfef17b8983b6a642e9326bce64276633","_id":"typescript@2.6.0-dev.20170920","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-2+tsTOwQUztFl1bBYzuH/4+mLFDNKjGsB2GFTtRf3o44D/2yh/yzpaAmh3/XIkhSWm58dM7Jp/7WhxC7/IouWA==","shasum":"511a16aa1f5cf88fc7a912c6ff516fd0d563ca05","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170920.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170920.tgz_1505887909596_0.7675170639995486"},"directories":{}},"2.6.0-dev.20170921":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170921","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","browser-resolve":"^1.11.2","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"d9951cbb8ec8de855f04310b987a7cd2082e7e1e","_id":"typescript@2.6.0-dev.20170921","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-sJey1YEppB52tuS2HDQEG3k+EIAF5TJm/AB3lmH1chyBcUVsOg1++Iyx4YSZvSIsGnBMO4+WdJ/scvwF7QjECw==","shasum":"b0a1f3a4549a9d17e5a91b17e5d255b3090a737c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170921.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170921.tgz_1505974381487_0.5453188403043896"},"directories":{}},"2.6.0-dev.20170922":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170922","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"30839378ac593386fc0a2a88512e2d26c38f3a24","_id":"typescript@2.6.0-dev.20170922","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-X4q3zz464yG54r3nU9chLk2gC+qkH4dP9QzxoG+WIQ8iDAbJIgaecPZFMB9j4XXagjya4Z1KVLPUlSNX7EAKKw==","shasum":"a9bab359496679cdf80832720140b24eb7c95e42","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170922.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170922.tgz_1506060552389_0.26522842957638204"},"directories":{}},"2.5.3-insiders.20170922":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.3-insiders.20170922","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"^2.5"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"94b4f8b79e370020cb31995e8fb0b78f9ba94349","_id":"typescript@2.5.3-insiders.20170922","_shasum":"0401084c938b26aaa53375c5864c951692af8dc8","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"0401084c938b26aaa53375c5864c951692af8dc8","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.3-insiders.20170922.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.3-insiders.20170922.tgz_1506118061598_0.9430080126039684"},"directories":{}},"2.6.0-dev.20170923":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170923","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"0abfd6a16504db3d3a557447fa32634222867574","_id":"typescript@2.6.0-dev.20170923","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-KqWJdDTBjpM6IlUbTOfsB1GhQv4GEkBidniiiI3zwBhOtXLdJYZPdtGfz8nX42AUDcIcifRBjwIy5aOCvO1KqQ==","shasum":"9318afa292dc1c87325bdc4fff3d169807219c2a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170923.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170923.tgz_1506147062960_0.05495683755725622"},"directories":{}},"2.6.0-dev.20170926":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170926","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"70087ed0d80157439d1a40858d3b361829457bcf","_id":"typescript@2.6.0-dev.20170926","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-Hb8TZnA2fH75G8l7Al8gbv6KR/jXnvXXQbrq3k7gAHHAGo8wsLrPSTYqBdInfm9LmZKS+qi+Ix0vfTHxmpidow==","shasum":"69aca48d0d7c38b69638dbb798e499349b86044a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170926.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170926.tgz_1506406244720_0.8128603189252317"},"directories":{}},"2.5.3":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.5.3","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","typescript":"^2.5"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"94b4f8b79e370020cb31995e8fb0b78f9ba94349","_id":"typescript@2.5.3","_npmVersion":"5.3.0","_nodeVersion":"8.5.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-ptLSQs2S4QuS6/OD1eAKG+S5G8QQtrU5RT32JULdZQtM1L3WTi34Wsu48Yndzi8xsObRAB9RPt/KhA9wlpEF6w==","shasum":"df3dcdc38f3beb800d4bc322646b04a3f6ca7f0d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.5.3.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.5.3.tgz_1506461635237_0.99989277520217"},"directories":{}},"2.6.0-dev.20170927":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170927","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"6ffee104ca7f8ec18170ff560bea9ed5e9e91fd2","_id":"typescript@2.6.0-dev.20170927","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-9eHvfg8PZivz8hUOrCV8G/Aj6Zk+Fa5ao0+colK59ALr9SQG9POCSjDGI/Sc3l+Q8oiPzEauGkC8eqRJSpRF1Q==","shasum":"d462f9e2c81258f3dcc4afb23c7104c4388f2962","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170927.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170927.tgz_1506492751148_0.7486718771979213"},"directories":{}},"2.6.0-dev.20170928":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170928","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"9b77dd6a98a85d4a37c389518b10ae12e46cc931","_id":"typescript@2.6.0-dev.20170928","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-1sku5CE2cYFf7E86+NX6qRhSfHysLt1q1CmwXa/7othr/4Yeljxg1/jW72gFr08bM3eKXc9sxu+S5F2DCHTSyw==","shasum":"4d13c1e864d16627eea5f73ac9fb15d7f0b70d9d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170928.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170928.tgz_1506579179624_0.8129954724572599"},"directories":{}},"2.6.0-dev.20170929":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170929","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"8e4c559f2c9e67df770d4a1a10a9a0536e26c8a9","_id":"typescript@2.6.0-dev.20170929","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-+xfpZgprJrstxVUUGnAWFXyhGCVsLj2VVT2mkcLJiOeQ394q4fHlhdfPZ+CTLAvptcK9Kv18lq8L5UdpedQYyQ==","shasum":"b3502c926bf639a4319b2fe66418187625d64bda","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170929.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170929.tgz_1506665581129_0.8851116439327598"},"directories":{}},"2.6.0-dev.20170930":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20170930","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"7aee3a102c60b2d1778963d14843a89badbb7baa","_id":"typescript@2.6.0-dev.20170930","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-cBcLhR8YEyBkRAaH984WLIl0W48sUlHjRyvA7RBPp+sfojrtQa2tFuuoT9Zf42LXOSUSaawc1ImKKBPgq0jioA==","shasum":"1ddb510dc99724f8a8f8279ff17c0b4f01ee2c26","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20170930.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20170930.tgz_1506752310810_0.8041006671264768"},"directories":{}},"2.6.0-dev.20171003":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20171003","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"5c7a3d050d62b4b6a9cb65c71f2bfd0e79f06bcf","_id":"typescript@2.6.0-dev.20171003","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-IHkdJVI/pFJZoLnl215lTR5RaKQRYLajTNRcK1koSmrS5rU6dJeUNJvSpd+sHVX0mjZTQa4almxTNoTUSlFkNQ==","shasum":"e1d0d6e2df40d8a6a444b5e67c32aa8e6392901a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20171003.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20171003.tgz_1507055313753_0.3599447822198272"},"directories":{}},"2.6.0-dev.20171004":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20171004","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"a3853d0774fd5312cd0b5a6b2dedbbd2a08bb966","_id":"typescript@2.6.0-dev.20171004","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-oSsUBvAZBXpQLhwZ8vGgCxThOXBloVUgGsAtZJupGw+AUQXwPSSLyCeNve/9kmImUy87LPfI7C6N/+Fw+KuPIQ==","shasum":"e661eeaaec21bb916403680baebca30fb5c5faac","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20171004.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20171004.tgz_1507097294702_0.9235125558916479"},"directories":{}},"2.6.0-dev.20171005":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20171005","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"c02865f3573840ccfd5db7ec7119905e7cb054ea","_id":"typescript@2.6.0-dev.20171005","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-tnlYauRIL6QH3EYSmwEE+Rr/+a3nQruUJFbVCyIQL7r14hkpzLRz4uqV/Vix1Cmnf7Q1K4yU3l+YcoekVjM1tQ==","shasum":"002e8a48528eb1d0aa81dac65615f510773fb7c6","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20171005.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20171005.tgz_1507183731975_0.19798404118046165"},"directories":{}},"2.6.0-dev.20171006":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20171006","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"7a4c3314e816bc7a7589d1e6e52328c38f1fc693","_id":"typescript@2.6.0-dev.20171006","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-Sy/znvSyAjnLRPzAvBYkqoSbwHbW+2pcUEM2TlfAoQQcbb6WpxP5jCX9hk0xSU3FvZ/+MnUV16/F2Y3bFUao8w==","shasum":"a2d066e9748b39a72353469e8c0c9a98012e1509","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20171006.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20171006.tgz_1507270406209_0.18894772650673985"},"directories":{}},"2.6.0-dev.20171007":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20171007","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"e821c2b6e9f244264779045fd1720fb9d16c0bb2","_id":"typescript@2.6.0-dev.20171007","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-WUcr7tsml8tyMXjNqqx7X5A9qRP2HjwR2v8uJlZzlGG61zFieZIxEjuj9PG/rhepApCF1BzZih+mZPz0jSpkPg==","shasum":"feead6b2bd906771c95fb8ae27e146d5b5ff6cd6","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20171007.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20171007.tgz_1507356787746_0.3167004967108369"},"directories":{}},"2.6.0-dev.20171010":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20171010","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"d23e5f1ee2fbe67db4ed0a5ac6dc856dfc7ce9c8","_id":"typescript@2.6.0-dev.20171010","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-zxYkmQlYx3wAyQV0CyXHeTXfPK/93rPCLMdUHTmx2nMy1qhlJXhu8cbBcLkk8Ytx7emOL0FMHIAF9RtDTzOsGw==","shasum":"f769d7c0a1706951306b8dd04bf93954cc625bf3","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20171010.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20171010.tgz_1507616081902_0.8465295415371656"},"directories":{}},"2.6.0-dev.20171011":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20171011","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"a7fa187fb2ac58892593e8936ac728d61a57eacb","_id":"typescript@2.6.0-dev.20171011","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-il66U8zNRbF875Gq6cP3K/CthG7Dp9PRpu5w5mVHaPcolzJhrdLa3K2WavqqJg/7h7sPOZvsU8nYdXO61sHagg==","shasum":"579ba897d319817ee202d0d203571d2ee255565e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20171011.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20171011.tgz_1507702508700_0.6046215759124607"},"directories":{}},"2.6.0-dev.20171012":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20171012","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"728d2a92ce2f3771ce726f4f6094eba094113ef9","_id":"typescript@2.6.0-dev.20171012","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-KLp7Z0f++UiDRlLomR48pzOwj2We/8WPkKPn9uA5Nmm7qD9xLD0pf7qEqs7EaNHCmGSdDl5bSwU2GHuVRsb2qg==","shasum":"42248ee530755effea01cfae7c3166c78ba02ddf","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20171012.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20171012.tgz_1507788936190_0.5870849860366434"},"directories":{}},"2.6.0-rc":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-rc","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"1c790bc4f9bf5102b98c50839ced416ae61b5612","_id":"typescript@2.6.0-rc","_npmVersion":"5.3.0","_nodeVersion":"8.6.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-5dDv8NNGYmipBdXnt9mqWqIbzQ/mY5XWjrLeNEROmkHGJ6TnacHUihXi2SvKMHQsCafbJZqaSO+agMRl8F36GA==","shasum":"6a8022e2dd3e7033f2dcf187cff7925ea3c8ac25","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-rc.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-rc.tgz_1507834848444_0.3845503672491759"},"directories":{}},"2.6.0-insiders.20171013":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-insiders.20171013","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"1c790bc4f9bf5102b98c50839ced416ae61b5612","_id":"typescript@2.6.0-insiders.20171013","_npmVersion":"5.3.0","_nodeVersion":"8.6.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-FcbP+P7z75P1CpI3brE9Zq9Q+XVzRS9K9OpAsIXszH+v/XczUq3SsXj8a1LVyuoZLmptjtj2roLDU2jhAyxMsw==","shasum":"2df25d9ea71f90ef41f8fe3b0829d09c1779de8d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-insiders.20171013.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-insiders.20171013.tgz_1507856359790_0.6845306647010148"},"directories":{}},"2.6.0-dev.20171013":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20171013","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"d940cdadfe52999eb37593bb4bcc531ac41c7d48","_id":"typescript@2.6.0-dev.20171013","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-pa7taT9kgn/svoK9mbeUORPt9GgOSgimd79ZNno7JTzrFQLU8pXnCrfSvGaprs2RKEpB+UEDxLx38WpWQ4r73g==","shasum":"7e4105e79af43bf7d08de72cc66becce1d55ce93","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20171013.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20171013.tgz_1507875320039_0.5154560105875134"},"directories":{}},"2.6.0-dev.20171014":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20171014","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"48d380f32875c1f95ce42921877736d74cb3786e","_id":"typescript@2.6.0-dev.20171014","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-Sm0LDjHwRky4mj4cWXykbfcko1iEsKGBBsVjOWYP5bhHuWQxYrcvdcYLQw7NhH1P7tdIE8eCGn4VMuilpFqj4A==","shasum":"f36a038efc6db6f8aa03cc20fa4c1980084ade74","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20171014.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20171014.tgz_1507961793902_0.19397647166624665"},"directories":{}},"2.6.0-dev.20171015":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20171015","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"d4c037739500d9f8b42753c57806881a7cd1bd2a","_id":"typescript@2.6.0-dev.20171015","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-nzEix2LsOs5r/iU9hH1ixfRjjC+Yo/2nCMPrvlCF08rqjfR4KPydEjv6NhcCLZABrQt2s0wcWq46irZeuonSUQ==","shasum":"d0df2cf511bfb58056fb80ab8ee7e390e664c82c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20171015.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20171015.tgz_1508048184364_0.48484851513057947"},"directories":{}},"2.6.1-insiders.20171016":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.1-insiders.20171016","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"1ccc04fe0a892e0e3c416b08efb7281fc6518c24","_id":"typescript@2.6.1-insiders.20171016","_shasum":"b8bc42e404c7bb938ed6f829cc688e8b41835f0b","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"b8bc42e404c7bb938ed6f829cc688e8b41835f0b","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.1-insiders.20171016.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.1-insiders.20171016.tgz_1508200677332_0.1356320276390761"},"directories":{}},"2.6.0-dev.20171017":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20171017","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"fcb48dd906c3d8be98423f206dac9386efb4fe48","_id":"typescript@2.6.0-dev.20171017","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-cpAFL3ZFANrG8itNrDfbvlA4y27CwkchkFUvxFlYF7xzXxHcvZuUoXCBWxZbhRFOcrAD0uyoVEPSFtnXqnSPSA==","shasum":"9778f4316de15cf35b7dbcdb18a90c1e4468ecad","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20171017.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20171017.tgz_1508220954721_0.9118635861668736"},"directories":{}},"2.6.0-dev.20171018":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20171018","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"574ebf7575da8388e8baea94751a092138998bf3","_id":"typescript@2.6.0-dev.20171018","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-Cot/6K8cPa+M8PppS27QS17jvMW8iKTe97txz5vVnYVGzMejI/b9NxhyYah2TCFl2BCCDt7UdC3F92RMWwvAGQ==","shasum":"91e5c1bf84c5b60685796405379403b988f6feb4","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20171018.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20171018.tgz_1508307678619_0.26038321550004184"},"directories":{}},"2.6.0-dev.20171019":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.0-dev.20171019","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"8212c962cdc8286ed9067c8446898bb0dc618c92","_id":"typescript@2.6.0-dev.20171019","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-KsPchRvXhG1lIferka0Lff2n/yHFZRmPRNnc0jPlU7v9l9ca27KisaUNemMnXuBIpWDgvokxR7peA4JqGWuXUw==","shasum":"fb752aee55ec89404e29cf564c285f143c3b0db9","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.0-dev.20171019.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.0-dev.20171019.tgz_1508393794653_0.9536942585837096"},"directories":{}},"2.6.1-insiders.20171019":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.1-insiders.20171019","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"4c1d076268469ea8ab7f10d037a508425f36d1d2","_id":"typescript@2.6.1-insiders.20171019","_shasum":"a8fa40e50723435ee4e685b6e2f66dd5c5930609","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"a8fa40e50723435ee4e685b6e2f66dd5c5930609","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.1-insiders.20171019.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.1-insiders.20171019.tgz_1508455274205_0.15572443162091076"},"directories":{}},"2.7.0-dev.20171020":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171020","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"1ea1254e8ee676f4c9356b3372d83677fd450594","_id":"typescript@2.7.0-dev.20171020","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-Sy1F2YVw7nj2pcMP2bE6YK5dviaY2WRJb12t27EUiW4wkD8GiaZ0sgNBdTKRcvTNFJ8KXjwnl+Ysi5+J5BlcHw==","shasum":"0003a879e3107f9df23adb8dc5fba90d0db79bbb","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171020.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171020.tgz_1508480133646_0.7079664517659694"},"directories":{}},"2.7.0-dev.20171021":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171021","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"ceba50750b7bd6c8cfc21a5886e6eb9de7f82a36","_id":"typescript@2.7.0-dev.20171021","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-PRBTt1WnEwGwA7CTN0B7AlHgobx1zZ+zpEW/OzcFfBfJgbCsBL28CkIz0ZpsAJNstWOtpC6+BYpwP6Vvne0jHA==","shasum":"32d945ef7deb0fcff6634173a903507efeef8d35","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171021.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171021.tgz_1508566427556_0.5624312383588403"},"directories":{}},"2.7.0-dev.20171024":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171024","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"538f1bf4f4d090cdb97dde63bc005bf580e91de5","_id":"typescript@2.7.0-dev.20171024","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-0FcjKogIW+OGhV4R/lK8r+gPlR2r+lSTu3YGIKbZ3gJWKBzgxTQuuQtQ/B4jdXsSPlEw9NczZe0aKM5K4lq9XQ==","shasum":"8bd83bafae5955bd2fb683bc4acb499adb92bcf3","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171024.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171024.tgz_1508825839220_0.32846161909401417"},"directories":{}},"2.7.0-dev.20171025":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171025","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"fd8980830ca35f07d838de5457504b95e6974d3c","_id":"typescript@2.7.0-dev.20171025","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-S9qiHmddviPhZdMfvfm1NzrTpRewCgcKkdhFjMoeyXdcFgqf/7ViMkl8KVeGWpSxWrkWHKUHR/4P6r9lyvNx2w==","shasum":"111f4617d164df470594f22f9d4a7cf8fceb9d5d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171025.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171025.tgz_1508912198532_0.9580594752915204"},"directories":{}},"2.7.0-dev.20171026":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171026","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"63dcdef6cf062fd0f0d83ca8758ad8bbf730b519","_id":"typescript@2.7.0-dev.20171026","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-YhlZhFNhe8YrBmZlQWYLpqZVVZisZaUMCqwkDGqvyW/QZqyz4JHSX/iTZbiTqHSwfLHwpexj5W59panej8NrKQ==","shasum":"6d6e1cc753136a262074d5a72425f2d8ec4072a9","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171026.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171026.tgz_1508998932122_0.5784391157794744"},"directories":{}},"2.7.0-dev.20171027":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171027","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"3e333e834e29ae1a90111996d04b737a34fc5e9a","_id":"typescript@2.7.0-dev.20171027","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-0QAKfJIZRTpZFKDGxMl7fqYNpzEYC12YHb8P8WbKglrp3UZeLkzTA5FRtejER3M942BD5SE1rpA5MTbyloo2fg==","shasum":"caf2c8d675e1d121bc4c4a17ae6bf924feb3feb5","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171027.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171027.tgz_1509085450761_0.956389591563493"},"directories":{}},"2.7.0-dev.20171028":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171028","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"b5f292d932d91ab88cec97719f81ec49161baf40","_id":"typescript@2.7.0-dev.20171028","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-yGXRXmQzgtkaLCVIUOrC7XKNpLEx2MBYWdqXUVuCk0jGFk58M0GVhCHxtonzQ1efBqf9kH7iD/O7IeCxOka6MA==","shasum":"e4d7db84babe19d37f104aca0872589cfb6f4376","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171028.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171028.tgz_1509171820567_0.703912922879681"},"directories":{}},"2.7.0-dev.20171029":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171029","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"7798f69558b3227f525ac3b56cb2cd8d03bc294b","_id":"typescript@2.7.0-dev.20171029","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-6LkYg0PcYzgI+huB0QwNkRNVaOKKtzUfV9ulYWq8wlIcjsHp66bfh+h21Rf3GMbGK4ta60M3uHpo8OFJQMCRIA==","shasum":"aea8338cc7e43563362bf5f1b4ab54e94378e66e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171029.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171029.tgz_1509257558385_0.6019481397233903"},"directories":{}},"2.7.0-dev.20171031":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171031","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"c66e3178ced0cff5c78b8d07035072fc6617f873","_id":"typescript@2.7.0-dev.20171031","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-m+B7AVXCZWmLYuggkpjakH6iyeupVrOQjGpH1qmkj1JD8aC0sqjs5R7e5csa0dKT66IlmUrrTVdzcrCXOTw7Ag==","shasum":"486494720deaba53f60a541697c665f6d512f4a7","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171031.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171031.tgz_1509430596836_0.6702833094168454"},"directories":{}},"2.6.1":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.1","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"477bdc78bbd092dbed60451fc684735bc401160a","_id":"typescript@2.6.1","_shasum":"ef39cdea27abac0b500242d6726ab90e0c846631","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"ef39cdea27abac0b500242d6726ab90e0c846631","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.1.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.1.tgz_1509469018429_0.16281037800945342"},"directories":{}},"2.7.0-dev.20171101":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171101","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"53ad019ba1c5ced4c0333f19fcd69bd31c07aa85","_id":"typescript@2.7.0-dev.20171101","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-PaErYUxbwNE8ujeaGonhnFl7iaVkzvsQOuLUIkgDn+jtXLpoXvJRcvPBgXobKOcvWtehVLm2tYcyz61hQehSyA==","shasum":"ec249c0e94344d560f753f5c83ae74ca01d29a1e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171101.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171101.tgz_1509516960728_0.7434560302644968"},"directories":{}},"2.7.0-dev.20171102":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171102","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"1a7a587a9ea11371c3748a632ac7613d20d1e5d2","_id":"typescript@2.7.0-dev.20171102","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-2KoOkcT9vU0s8nrHAezC5q+gffqj3Df/QG4ZqsY6EN6gzz/5toOFWCwEQ6tMTkJRUZZ0xNAoPAazgJp+X9ff+A==","shasum":"1f11b8c37abd4be1001fd88f4a2f55fb1259a85e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171102.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171102.tgz_1509603286538_0.14505293872207403"},"directories":{}},"2.7.0-dev.20171103":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171103","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"a8d3cd6dfe6de3e38d025b2e3556670df251e3c0","_id":"typescript@2.7.0-dev.20171103","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-Nt5F/G7/gRJJja893J7ZKjMhySWPt1iq6AJq68z0oQZmDfr/kb/3NtLQIxEtMyZN9tHAjeV4QKCy6TtqxRhJPw==","shasum":"0e9318e4890701846dd5e542a81573818b4fb311","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171103.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171103.tgz_1509689642183_0.7157303355634212"},"directories":{}},"2.7.0-dev.20171104":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171104","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"8d5b0529b2bb7650d471b4d64fd88061cde4707d","_id":"typescript@2.7.0-dev.20171104","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-ZnGly45fZWMDrehrOFcZ9TyDvdTznT76Bg4WiSXjICxnUBgcDgiEgHtA597egTRMKOAgZbQXfeYnbktZ+xtrOg==","shasum":"c91e9313a96a27aef9287ab5d6a10543cb709011","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171104.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171104.tgz_1509776198656_0.7404391807503998"},"directories":{}},"2.7.0-dev.20171108":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171108","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"b64944ad17450ddde30d648fce89fbb3e3599eb0","_id":"typescript@2.7.0-dev.20171108","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-tdNqrIdsTBEksRSBsbEVaSmVA7tkk6Q7N4z30Q0NSiVh1GYDg15tpBn7JD+53bFgtOekpnEn/n/cOc0p16FIbQ==","shasum":"bd316b6bb0455394d7dc37ae109ca28005b62094","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171108.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171108.tgz_1510121600352_0.3250115273986012"},"directories":{}},"2.7.0-dev.20171109":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171109","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"ceaeffa3ab2024aa4a8ff11a7a5d6826d1bd2bf3","_id":"typescript@2.7.0-dev.20171109","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-FC8/zn3R1HLPSiZkJsVB450L8X8Eg0PoHVqz6emXb5z3f8uyM8SxxU6iL2x89DoeQyg/xaguWvuLbJnE1hB9Cg==","shasum":"5b8d55cf06b95f6ffb6fbe76d25f00df6c95afd6","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171109.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171109.tgz_1510208248611_0.6093420449178666"},"directories":{}},"2.7.0-dev.20171110":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171110","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"16efae24338f09c9059c8ec1525166f521110935","_id":"typescript@2.7.0-dev.20171110","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-cdQOWn0KBq213PVV1ZrQ9NZTeGrxS7JY0MHWaDE09fLayIyFfIePDRxIZjjTioM5eUl3vKiXA0jz4FQOW64jVA==","shasum":"b83240d5e9aec6c3a9dc6cab2e92e8008a820cb6","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171110.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171110.tgz_1510294730310_0.6765591120347381"},"directories":{}},"2.7.0-dev.20171111":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171111","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"d2eb8ba640f997c988b6c944fbaef61ab1e142ff","_id":"typescript@2.7.0-dev.20171111","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-BJJz5gQ2NWQWHUSHQSMNaXvPM52DK2W/BvCzRnPkseiYgH/NsC9huPBD2sJ3VbDgoNI48F0BGWkoqsMM2ELkvQ==","shasum":"9f5771356206df2ea5ce316fd2b7e7c44a97f996","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171111.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171111.tgz_1510381393296_0.8131012378726155"},"directories":{}},"2.7.0-dev.20171112":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171112","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"b8fbf884d0f01c1a20bb921cc0a65d6c1a517ee8","_id":"typescript@2.7.0-dev.20171112","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-b1VZBtbO/DSXZN9KWSXl5lRa8c1dQu+cWODv1GsOfFo8K6RC98m/nKm/fUdC/VZIZxhtzC798TuanbKo4rVZGA==","shasum":"546557c10d2feaac7b94323685f0af38f7aa0832","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171112.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171112.tgz_1510467217930_0.5014296700246632"},"directories":{}},"2.7.0-dev.20171114":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171114","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"bee12e6eac13cfabdbe28d5f7ed4372fc24712fa","_id":"typescript@2.7.0-dev.20171114","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-mm4+m9IHtf4gqOxEU8ZwLAzWAbP+xZoEZbdchPitTcDpO2HQv4CkVSM0Dunilt5xLod8hb8qeJNq5H5fg0XIzQ==","shasum":"79d730a18d9a67309bbef9a364b8853daf9f3d9d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171114.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171114.tgz_1510640884275_0.612911474192515"},"directories":{}},"2.7.0-dev.20171115":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171115","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"8a7b8445de0e3419b0303346805ec71ca4ed6e2e","_id":"typescript@2.7.0-dev.20171115","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-6M5T2dQY2G7871nYAOtUD9dlSsjaGUvOSZEEi4ECSbIWIkbUXCvzVWubZhnb9j57FTqy4IpOTzldcHKCsRlCZg==","shasum":"2fe9e2d2dd381d6485a6572c9f13cd4ab67a5261","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171115.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171115.tgz_1510726659161_0.1635249019600451"},"directories":{}},"2.7.0-dev.20171116":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171116","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"b4ea7006f1f9f098103263bf56f61c47caa545af","_id":"typescript@2.7.0-dev.20171116","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-gAeUoaNxUo0m922dtJE7ng7fdNIhrZkJCOGEj0ETERMTR7I6wmC2g2f9qE2DcRxwYntitnoJAeyKhJ7LZqoxTA==","shasum":"bf692cb7929aa83305c0a42937e2bd871d09fc86","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171116.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171116.tgz_1510813295863_0.7656756765209138"},"directories":{}},"2.7.0-dev.20171117":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171117","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"12989456d191e820329ce98d06b0b1103055bc5b","_id":"typescript@2.7.0-dev.20171117","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-UAflUlbG6kZvtZAHnF2wbua3f2g4uYLsgWkntP8j5LkEwI4+g0NXzC8G7bWA4w2HmzNlnJTXT25p1KdpHzK/Tg==","shasum":"bc4527c388386882980c548672452d1b00e26616","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171117.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171117.tgz_1510899963522_0.9288466216530651"},"directories":{}},"2.7.0-dev.20171118":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171118","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"6c4c10c7cf294dc71f943314e29a7dd1b6e88c6a","_id":"typescript@2.7.0-dev.20171118","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-OponZ47LDVOIsxLY70gNEyZ8goIxOFPdcXJru3HqUoYBA8rOPMeN/XXzDvJi664PJywdF8E13gkuiRHdywTr3A==","shasum":"d7cddb2b523f13f632ead5964f5584fc2e74f855","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171118.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171118.tgz_1510986016847_0.14841227675788105"},"directories":{}},"2.6.2-insiders.20171120":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.2-insiders.20171120","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"^2.6.1"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"6513bed4d3d83b873c4866a91b99ab852dfa1956","_id":"typescript@2.6.2-insiders.20171120","_npmVersion":"5.5.1","_nodeVersion":"9.2.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-hLtSTJQQY09AZGqhraD+SJsxE3h1uG8PhTBYbYBJhumHNzod4Y3j743wAjkfpRCbt0Ej31mew8kV5Qny8IPIFw==","shasum":"d2f4c36831fa663639624799a62814cbdca9aaae","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.2-insiders.20171120.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.2-insiders.20171120.tgz_1511219768031_0.7574593869503587"},"directories":{}},"2.7.0-dev.20171121":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171121","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"cc7b46bb75fca66d0a1501750bf0c365fa11b179","_id":"typescript@2.7.0-dev.20171121","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-rIUKj0hFWT6NvEPvo8+3zZTVFxJQYupmIKXOne95EAKdyJ5yTOPRQWuX7iUyxTUt81+K+at6kQAp7dJ+rKhb+Q==","shasum":"5922d22931098bdf131d9eb0490b3cffea5c2ec6","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171121.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171121.tgz_1511245065511_0.43605618411675096"},"directories":{}},"2.7.0-dev.20171122":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171122","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"332a61ee8b40a6afd87525e47bee03ae23247833","_id":"typescript@2.7.0-dev.20171122","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-xRqZJdvzA6+O1/lqpnFS65QVJB2dzuaNKUueZGWFLUqXqq/bv2tLIuWAwDUyVhDNHbtrg6VpB6hhCpR6TcHzMw==","shasum":"d4e430678a00129273bbac91b5bee1baa897c315","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171122.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171122.tgz_1511331880446_0.36954339034855366"},"directories":{}},"2.7.0-dev.20171123":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171123","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"8c889333d85e862b6579e017e8d10ce048b33aef","_id":"typescript@2.7.0-dev.20171123","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-NPgs9Yt0D4Xbgr5QWEQ4hNQX8SzwfPDrjEOq4dNyQz4vb0YmZkScqUSy87/jc+JNmwf9AyTXDH0e+jSwTTl/5A==","shasum":"1b20465cd004cc7d8453487c7dbf48e0fdc5b208","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171123.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171123.tgz_1511418259128_0.18761202902533114"},"directories":{}},"2.7.0-dev.20171124":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171124","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"0d9bc55033a3b5c8f68622803409476c7a6f82b4","_id":"typescript@2.7.0-dev.20171124","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-sJMx4549BgmKw152H0IfOIm3zqQS9pOsEiOpg4kX1FmuKYa4aAnTauTlvnC/NVdt1qtrLYvgq2LAIXNwI5QI7w==","shasum":"434b2829f586290dec109dd4c089e36027ef9cd7","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171124.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171124.tgz_1511504352484_0.6056827106513083"},"directories":{}},"2.7.0-dev.20171125":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171125","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"568e52d55087984c3e4f2df9f95101f5eadbdbd5","_id":"typescript@2.7.0-dev.20171125","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-frQQvIY/wHw1ycW0mALl9RK33TOUQryFO0ybW5nJeayyz4lYiXv6eB81WTCj+6lmA6zwZdF4rTN7hZ9CJr4faQ==","shasum":"68c28d0d8846955d0cccc50dfe407cb8c9fdc2a3","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171125.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171125.tgz_1511590633743_0.21556506864726543"},"directories":{}},"2.7.0-dev.20171126":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171126","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"0ae5a8995e8b395bb3088d00e40e7933763a0945","_id":"typescript@2.7.0-dev.20171126","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-/srxUzGJqkOF4NS69Q+Tivwa8J2fjrsBaF+5/WcY+fayYdk4RQnfCLB6Ux4htDzY2UmMy73ZPXuIkt1i90qATQ==","shasum":"f7d13d156bc9a2fdedb47cfc593595eb3728c605","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171126.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171126.tgz_1511677009978_0.5246562317479402"},"directories":{}},"2.6.2":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.6.2","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","colors":"latest","typescript":"^2.6.1"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"54426a14f4c232da8e563d20ca8e71263e1c96b5","_id":"typescript@2.6.2","_shasum":"3c5b6fd7f6de0914269027f03c0946758f7673a4","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"shasum":"3c5b6fd7f6de0914269027f03c0946758f7673a4","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.6.2.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.6.2.tgz_1511806648239_0.8767166533507407"},"directories":{}},"2.7.0-dev.20171128":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171128","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"d2da58e0cae0a2575ff1f1175712f57bcb83db05","_id":"typescript@2.7.0-dev.20171128","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-7YSRUJzBGlIVVBvqPzoszcJB0eCKh9+uX2YFfRNW1JJ5ZZhT7hH//CLni6U5Na+XYm7cgFi9yxdm9buIvcOFWw==","shasum":"55ebfe6a14cae76e91616bfadee0f9d4439eada6","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171128.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171128.tgz_1511850661249_0.0834644720889628"},"directories":{}},"2.7.0-dev.20171129":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171129","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"b6f53eb5a943a236183d6dd23e21047428dda82b","_id":"typescript@2.7.0-dev.20171129","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-ol/AGcRTNWfQQIyPxeqiDmzKIYmRsCjvAUS5XMpGLNGjelU2GmvJJlwrQP5H2NOCV4njdgF0pgcVrXENRvIVyQ==","shasum":"873780fdc8ef90c17979d9beb0ea7dc04eed42a3","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171129.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171129.tgz_1511937133928_0.6490056074690074"},"directories":{}},"2.7.0-dev.20171130":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171130","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"cdd3cd4f514248c353cb540a98445a57ad619bb3","_id":"typescript@2.7.0-dev.20171130","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-AthI3Irg733CPaN4Ci5xjqTsc9G0KA6yBQ0fOfHo41ZaXDStrp10Lsxksljr18N/wTRMiJEjp9SA7Jc7bDqvwQ==","shasum":"74185f7a07bae17d5d70bb240dde3f0c2a79cdf7","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171130.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171130.tgz_1512022701950_0.13930127653293312"},"directories":{}},"2.7.0-dev.20171201":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171201","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"8f1cdc9b0c649f1e4fe9d96718be93277baa2ecd","_id":"typescript@2.7.0-dev.20171201","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-v1Oy3pGRIsscRRoQpkqiYsVGBrf6RBoG3AzSKocKGfedxv0WPrCvxKApl9LPg4mBgLo7IEzF32E2Q+X+U15O3A==","shasum":"12a62d87a64b5c443ffeeca5ae1492c1eb74101f","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171201.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171201.tgz_1512109025548_0.3620126966852695"},"directories":{}},"2.7.0-dev.20171202":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171202","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"e90bf5e81bcd1c1d023e37873a5198d0d4e7e41e","_id":"typescript@2.7.0-dev.20171202","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-izkFJwSD2sb0Hipu38rBJ7TLcYXlsRl6QZI+lVwcpftTPQE7Cd9AbKc3nHWpQ3REEVXmV7kIq5fhyaC2C/0mwg==","shasum":"332d583e650a94b3ac2bc423ea26fe45724477a3","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171202.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171202.tgz_1512195446698_0.6781525209080428"},"directories":{}},"2.7.0-dev.20171203":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171203","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"49a48ffd4d7ed76fa4033752d1d55a1ad31ab18a","_id":"typescript@2.7.0-dev.20171203","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-FyhV7OvieIXzjktOb9YmixEIR8olL8IrnonCmJQWGnj8Wt6eoQQKQlkXWPy8mpwEaSIXw/nQO0NpGQ+nWokhRw==","shasum":"14039d585f3a331e4da84d4bc7ce559ca3b51ba9","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171203.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171203.tgz_1512281777048_0.05915719526819885"},"directories":{}},"2.7.0-dev.20171205":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171205","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"e42ecea8fb08e843188bb7b3b5f907e626a36a8a","_id":"typescript@2.7.0-dev.20171205","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-vPQQqQjTNLO2SzVQADu6svncQZT6nonsMmpYVnP1ZGDIIa9xomu9OtKmsv71W8nca7WQEPVPCr/ngnlfVHEU5Q==","shasum":"d64f0d7ea6b56e6a3e6351fb78e5e6edbe5f0941","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171205.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171205.tgz_1512455497520_0.7154463592451066"},"directories":{}},"2.7.0-dev.20171206":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171206","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"3a3bb8e3f07a1dac3e1297d08e2733eb7e7347d8","_id":"typescript@2.7.0-dev.20171206","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-sq6ZlGCblvrxxbdOik5E/aDnw0+2nclNy3u8zeE+rZRqxFObzmpwrgLQP8Xa4xo23GMuBNuvjSEolucxJOuGyg==","shasum":"3a7db27843a50e395201dc0e1ec8874342585823","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171206.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171206.tgz_1512542176992_0.9748989699874073"},"directories":{}},"2.7.0-dev.20171207":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171207","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"477c1f57a985f3336475e9e65d323e5455df3e75","_id":"typescript@2.7.0-dev.20171207","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-394zbMCIrmMOPYJTq/BCW0klX+xDxFE+grLo0vrUeUe5bU+Csud2G2ILPLp4FwyHCHgA7c4jXIkzj+DRjjipZw==","shasum":"753a060292221046a537c5eee30f1fa7afdee29e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171207.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171207.tgz_1512628692851_0.8101834668777883"},"directories":{}},"2.7.0-dev.20171208":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171208","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"8d209a3672dddb5ebe7e846b35d510f409cd507f","_id":"typescript@2.7.0-dev.20171208","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-7l5KJiFEKAID5XWNq0egz9ZXDI5cZjzhJd+rthgNPNsZw0RXkMRpmBk8wVpfP4t0rDkiL9WpzvAbEAF2KEGd9w==","shasum":"c7de27d1af41747730baf9010d31d177b0f324b3","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171208.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171208.tgz_1512714991995_0.9054313988890499"},"directories":{}},"2.7.0-dev.20171209":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171209","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"9e51882d9cb1efdd164e27e98f3de2d5294b8257","_id":"typescript@2.7.0-dev.20171209","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-4ETBmIehQBmJOVwb/awg+EHMjpq3esymYD+tKRvxHv3cW+1s9+t8kdozn3/Fk50vAH13YtOHxuOcvU7OXrdG5Q==","shasum":"f0e038b1603217b48cdd98b376f728d46012129c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171209.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171209.tgz_1512800882680_0.7125193176325411"},"directories":{}},"2.7.0-dev.20171212":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171212","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"3aa192a870a3d81575ed1431d2d16ebb3a3db079","_id":"typescript@2.7.0-dev.20171212","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-D9eP7T4QjfsoFNi35iOYTgLgwQE+OrVkWFQ2p+MbgKd0W2Qupqe6COyyQPoUeXvOrB5rbaIkeomh+VFMOPjtKg==","shasum":"e46f0735832d78d91376f248758ae1e55600ab7b","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171212.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171212.tgz_1513059471359_0.42005243338644505"},"directories":{}},"2.7.0-dev.20171213":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171213","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"9ae67026d7f121be67d772ad3bf6b9167334b216","_id":"typescript@2.7.0-dev.20171213","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-HiKU18Mj3aXcFv8fZlWINoRPUa+Iuyk6bflJ1JtkD4jpVzidfLN2zdetDIiIOWqJrwWHsPNk+mqRg54Su+/W4Q==","shasum":"f6d085f769ffaf76f1cd488de2b679e277cea31a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171213.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171213.tgz_1513145963334_0.6618895113933831"},"directories":{}},"2.7.0-dev.20171214":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171214","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"2368ad7eefdf1aa3ce9678ac2b1649a2db8bcef3","_id":"typescript@2.7.0-dev.20171214","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-frLKPilNYRhALI0wq4xUwOx+1nOnZKmpoIpxxpIu+yCXP0DIc79/RmfBwAwfxtDifVqaPaluVUFq9hHWa4F2Iw==","shasum":"e8c1b0bc5148e11150079b4373dd09921b0d9244","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171214.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171214.tgz_1513232344441_0.9608038102742285"},"directories":{}},"2.7.0-insiders.20171214":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-insiders.20171214","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/colors":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","colors":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"26c1a49d59dae5c7572ee82828752ba49ac7dd19","_id":"typescript@2.7.0-insiders.20171214","_npmVersion":"5.5.1","_nodeVersion":"9.2.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-k61ip2yVZg5cTziSBnilKRnGwJwjDleAjv86Dbl50vl8lMfDyZ4xQIbc5mz5aAsZAI/QZXfMcyOFOULO9AF5vw==","shasum":"841344ddae5f498a97c0435fcd12860480050e71","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-insiders.20171214.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-insiders.20171214.tgz_1513289936963_0.8040244339499623"},"directories":{}},"2.7.0-dev.20171215":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171215","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"423ab2e03dec6ede17beaa1aa02cb697d890fc88","_id":"typescript@2.7.0-dev.20171215","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-i1BAdDEpdGf9A5Ax5oxeUgDDpdidSzFRFX7+7UYLqLBMqSN4R47JDJjyGHJF+i4DEXJmEu0Ykfa12nEcAGwTnA==","shasum":"069fe6937904ee5e8b2d76ce5b7a8d42d186fe14","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171215.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171215.tgz_1513319231145_0.545740137109533"},"directories":{}},"2.7.0-dev.20171216":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171216","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"aa9e2ba31822ba7b002cf1c436e2c6cd6954972b","_id":"typescript@2.7.0-dev.20171216","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-RYVNBWK/OXgXWUY2xJVYVLN3cgqv9a1sPC+oXKDW+zeiRqkrqAQcs4HQUZn3TmyAwb0GcFaVEJRbXb1b1K9DEQ==","shasum":"ae3ff4ea462a8a5f37923108edeedfcaf9c5f1b7","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171216.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171216.tgz_1513405579940_0.950414395192638"},"directories":{}},"2.7.0-dev.20171219":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171219","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"6c15fc663485987a69d8be8feff7833b916fdb02","_id":"typescript@2.7.0-dev.20171219","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-gqyvX26+pX/aaWW8+E/y5KYv2BGQcRAI366DBu0dxsy9lOusuppu4Zt5m2vJyRHhLYiuk0QDj+b+tUP8sc7i+Q==","shasum":"bc42c11d2b0ff44d60b53c4171cf30fa02b4bff1","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171219.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171219.tgz_1513664655733_0.8562055891379714"},"directories":{}},"2.7.0-dev.20171220":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171220","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"8173733ead1bf6e72397cd68e522fe25423a56a4","_id":"typescript@2.7.0-dev.20171220","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-FpuHYniUwj5luzeVVqUY3CtUYu3XfN2YMUvR31B9Y+eL5126d5xZAHhY9abznjfqIF/TM7xnpj1Dry8fC3x8xg==","shasum":"1a9a5efb78c92f5bb1d87c7db3140da60fc2a440","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171220.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171220.tgz_1513750676734_0.272092804312706"},"directories":{}},"2.7.0-dev.20171221":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171221","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"e08e6633ebf090bd93a0bf6880316d59a45556f1","_id":"typescript@2.7.0-dev.20171221","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-PM09fTK1T0WSZHNDXqrB/P6lTaQkzAnXlx23Q5J/21oQ8kgU7B7TtUFTX7zzdSZnH78j49aUx5bVuQCRJkBowg==","shasum":"619e94e3dd6012c00536cb16730d907f16acacd3","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171221.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171221.tgz_1513837497008_0.8636708438862115"},"directories":{}},"2.7.0-dev.20171222":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171222","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"7ad0d7b9fdbadf6081e6cf909b44e84a8ac7942d","_id":"typescript@2.7.0-dev.20171222","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-8oeulYD2UgbpW+wAmPzb7YaGJaxbZvdq8N7sJ2feaVmwXNDuXXZh2HiDI+8AMX9losRUIodo7uSeVR3A/Mrv0w==","shasum":"4c29cf459831ef5863e6adb98235ab6d96ad7c88","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171222.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171222.tgz_1513923455890_0.15567407896742225"},"directories":{}},"2.7.0-dev.20171223":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171223","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"fd4ac106778a86bd58918a9da4877d72387845ef","_id":"typescript@2.7.0-dev.20171223","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-Q9olYV47QAHE4Sx+OCZDzTJKgvPpeKH6roucwXFYnrPJKkbrtmZzmF6+7VYM/rkhGRj22+M0k/yObmGMs6rSfQ==","shasum":"1bf658be9c733ef1a7bae651396a49a17c307365","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171223.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171223.tgz_1514009784613_0.34367261873558164"},"directories":{}},"2.7.0-dev.20171224":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171224","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"46262405bca681ab8b8f01a6ba072f8d73ef532f","_id":"typescript@2.7.0-dev.20171224","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-TXmx9YgRwRVdExn2SA6fHCgEtmw/yJv+MXn39kdHSb8xg+41KEZKQwwiLOp6l/OgIeHL2PICCl9apt0ORK8AGw==","shasum":"52e99b867410d28d1c8cb88d3651e2650ff9d252","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171224.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171224.tgz_1514096188168_0.7725425474345684"},"directories":{}},"2.7.0-dev.20171226":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171226","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"b15ecfc51c84cc3b9a44d3ee167c2d18e7664278","_id":"typescript@2.7.0-dev.20171226","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-iOD4mO63Ipm3YxKgmohyvHpXvqWtISLnjNBFufuNG7qX80ToSmd6qT0QQw1NCrzxeym1QOrYOX2MmiiGEhjnJA==","shasum":"f13145a9da9c9fc6b35514171a4ad35811089c83","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171226.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171226.tgz_1514269001522_0.4775751477573067"},"directories":{}},"2.7.0-dev.20171229":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171229","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"7cddbf5ad7c5df033d46839857ee4cadc558cbf7","_id":"typescript@2.7.0-dev.20171229","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-1mlIq637aWmZqB1sGZ09cmzTbCdWPed/iIp571HyvmHpnyy5Gn6rUwtzx9iSglwEfing0K8seAgT7Glf+ugDCA==","shasum":"7c7348d554c1b1548d70e5bad490d17049a19106","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171229.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171229.tgz_1514529039187_0.657717518042773"},"directories":{}},"2.7.0-dev.20171230":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20171230","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"0477f91dbad209809363323042f34926d3a6e175","_id":"typescript@2.7.0-dev.20171230","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-A5cw41X6MQNUCvreRUyqh6HAf61O+OeE1o2tZFh6hXLOo2aEQsrP7diRiu7Mw7/XvOfCpcyFOtgE6AYXvYe1JA==","shasum":"d245060f3881832c592235b917083b6a581d206d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20171230.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20171230.tgz_1514615136667_0.5855078753083944"},"directories":{}},"2.7.0-dev.20180103":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20180103","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"29378b2ce21320336c276045371cee302bbc4db1","_id":"typescript@2.7.0-dev.20180103","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-f6CmdvhaXyqngowgGu7R6wSffwjAJUb29XpVkrfwEYO5T8M0EqaOPaq5XFx10Gi4umK+YGLV6A9rRYzUY8qhrw==","shasum":"b5855826bd0f520b379852a748cb8a6954d3c411","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20180103.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20180103.tgz_1514960364135_0.2845246933866292"},"directories":{}},"2.7.0-dev.20180104":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20180104","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"latest","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"e3a20e7f0aa9cd76104f45c5a6997ff59ea39ebc","_id":"typescript@2.7.0-dev.20180104","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-ao+HbCE1hbdQXckjo3EXaPpKtqwmkzfOEin1HMj7TDi21PEm1xVv8iuN8xmDBMWA9zv1wmz/dR3LdKIkOUndJQ==","shasum":"ec00799bf9c34791c4f6f6ff268b1734db7730a9","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20180104.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20180104.tgz_1515047077085_0.5438133957795799"},"directories":{}},"2.7.0-dev.20180105":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20180105","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"4eb633e0d9ac8e022cdd745206062de573ae5b77","_id":"typescript@2.7.0-dev.20180105","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-vCiuU6w3qtngOadGnY9/B4o5KB1JCVnV970PGLcpuw2AMbNLOhiMpp08nQQkpZvTIL3lJyQGeYhcDbdIEnzdsA==","shasum":"5df2476cd9c38086e61d031a0f48b5047fcb3f37","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20180105.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20180105.tgz_1515133033210_0.1527466243132949"},"directories":{}},"2.7.0-dev.20180106":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20180106","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"1957dfef8ea1f56df286e3f409d888d7bf557615","_id":"typescript@2.7.0-dev.20180106","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-UvQkXDDUZIYWGyRZ/iO48djM/96bPQiCL/5O0qN75RVvlCC6yEqYmVhCw51RQa/iW8gIKtIuFGcVMzZKqnkmLw==","shasum":"87f06d13e64ff52fd8539568a0bdae417703d650","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20180106.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20180106.tgz_1515220175562_0.6198401900473982"},"directories":{}},"2.7.0-dev.20180107":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20180107","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"28a818f6ee5eba034dda8b1108cd6dbd874938bf","_id":"typescript@2.7.0-dev.20180107","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-WiBvqEuVUGKwBn6jKyLPLpQYzpe6ccsejXNfemSd90QmmAb0WoeQa24gtOKV9Pt7DE7TioDv+oQlPDs35Jr0/g==","shasum":"8b35d19ac2b1384264e26f36f2a5b1ce86c81913","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20180107.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20180107.tgz_1515306897337_0.8528149088378996"},"directories":{}},"2.7.0-dev.20180108":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20180108","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"943e52211bd1677c0b9f5073874e304d1338c0b4","_id":"typescript@2.7.0-dev.20180108","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-ZlggGsch8Y2d0LqAlCYGRzm/gdm2bqSpb4rdthY+YvpPsQqFixT0tU8sgjeRibMXW9hbS2Hz6kibS8L2oUKWfQ==","shasum":"c83d5610b7a8765cc6962331ef8c9b2577040ed5","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20180108.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20180108.tgz_1515392760930_0.9011138600762933"},"directories":{}},"2.7.0-insiders.20180108":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-insiders.20180108","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"c6e4373403059d66743839a0677050edbf7deb04","_id":"typescript@2.7.0-insiders.20180108","_npmVersion":"5.5.1","_nodeVersion":"9.2.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-WWCT0HFa+Yg0kpIf1+PZxI9C2GfMvR8Zl1OJEWO9gTq6RS1BcR7tfw5L/zsSK+FAiy6IopNNF9QwXgZC87zeNQ==","shasum":"b9230ca5a0020e92133f63e6a4272f8c1b301bdb","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-insiders.20180108.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-insiders.20180108.tgz_1515397839626_0.20366831682622433"},"directories":{}},"2.7.0-dev.20180109":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20180109","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"ef5a289966f1ce1a72c9865272b068e5f5c6fa50","_id":"typescript@2.7.0-dev.20180109","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-/0Zwo+4gpa9H2mXiWJzcu8BFd0hGvjGcp88z109I5pZ+z2shSy/94U5363hpwmxjv1/FtSd06qMDpAkIIqEEpw==","shasum":"8ffb23a38903b7ba7abff12b7d5c10dc2675c987","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20180109.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20180109.tgz_1515479688124_0.049829047406092286"},"directories":{}},"2.7.0-dev.20180110":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20180110","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"c9ef52b9d818f1192ac3146385bbaddb599d5afe","_id":"typescript@2.7.0-dev.20180110","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-hfeNQxcOIk4jkBhKEpwZFTLbv6Z0pctN5NpfO0U25XmM54fOQrgfkEM8oZeQJ+N+UODQYD5/RXmZyyTww3O3XA==","shasum":"7015652744d330bc1fd8a5979617a583145d6094","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20180110.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20180110.tgz_1515566324462_0.6713724983856082"},"directories":{}},"2.7.0-dev.20180111":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20180111","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"40b896a73c2dd998353fa56e6b812a6d4f991ec7","_id":"typescript@2.7.0-dev.20180111","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-CtrIC/ZYWWxah0gJqB6li52VncEjNoD7bWxC+wNUNQEFdooPvgXaHlg3dTmku19D3kVoGV7f05v29cV/jLaC5Q==","shasum":"9d8114598082059d1aaaafdcb9180ee00098ba58","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20180111.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20180111.tgz_1515652724043_0.057831637328490615"},"directories":{}},"2.7.0-dev.20180112":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20180112","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"b529d5ba1f4904649e564e0c7bf3f7aab18b9abb","_id":"typescript@2.7.0-dev.20180112","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-SWck5nYGZU+foIlTOeKNOQX8KdIFVCrneRtk/nZqDbSRA9PTez5KZ6Xo8BAesfhJlbGKTyeE/CZOsmNXbCvlXw==","shasum":"659271ec59e63e0909750bbe7124a12a29f7635e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20180112.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20180112.tgz_1515738905007_0.30535420635715127"},"directories":{}},"2.7.0-dev.20180113":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20180113","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"2f29b7125b615d3cb5dc639c4918754896b301d9","_id":"typescript@2.7.0-dev.20180113","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-oIhiPaxLc+2rIUVtS5EwA6PssygnkXC1B5o/9rqV6J9TIOkQjV9LzLyngYcwbJux82+Xb88kXn+rJiKeOSM9aQ==","shasum":"32ff993fd017b91cfe26c94c1f8e243eeb5098a4","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20180113.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20180113.tgz_1515825494664_0.9777903973590583"},"directories":{}},"2.7.0-dev.20180116":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20180116","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"f0ce80a5c77684e886e341bcbc25056257f4d574","_id":"typescript@2.7.0-dev.20180116","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-qVEa3OSmHI4upo6ig54jKaC4LkjMf5g8qVWva5h5yuoAjk90tSxhvy22oTVd/CgcqkzWLEO/mMQwMFJ+iFomjA==","shasum":"2a77af3949f6752f862c8704310e9da7a0e82db5","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20180116.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20180116.tgz_1516084459588_0.17047911905683577"},"directories":{}},"2.7.0-rc":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-rc","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"f08ac66acaeec6fc747d6582af4d59edef3c4b6e","_id":"typescript@2.7.0-rc","_npmVersion":"5.5.1","_nodeVersion":"9.2.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-uQpL5isp2Pnn0N4mvow85Ob0Nwqr7fD6wME0pmBZ/RYad9OTIry4aTsfnsLa0lnOKvs2FRRm/TRHoc/fgn19wg==","shasum":"bf86a065a3a0be1e072c3fb7d64e8976f33b8365","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-rc.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-rc.tgz_1516212850454_0.9958619659300894"},"directories":{}},"2.7.0-insiders.20180117":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-insiders.20180117","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"3c988e8f5ab4ee3aa8cd8bfb350dd3915b96662f","_id":"typescript@2.7.0-insiders.20180117","_npmVersion":"5.5.1","_nodeVersion":"9.2.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-rYrA2Xtgp5cmytQtTWIhQkVxFHI8YB3BH2wkqixBryLIEef7UXLo5AhlkoD0QLSZLQaFeXPlfW9ouLTD3Rga8w==","shasum":"01761dd795e6ad1d6a11a1e898c9b14d068d0097","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-insiders.20180117.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-insiders.20180117.tgz_1516224459597_0.32260961388237774"},"directories":{}},"2.7.0-dev.20180118":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20180118","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"3fc8f9d367f58833f2650a34aec480f927539632","_id":"typescript@2.7.0-dev.20180118","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-S62mGgKVTo0SmMmNL+dXVAPIyXkpE6hocqIVqJXgrJCtk1wxNvDhL+nYFOHoINul/42osRi4ou7nhN8hdVv7pw==","shasum":"f357c430f93387512cb58e125da080d03862bcf9","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20180118.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20180118.tgz_1516258721712_0.3364407478366047"},"directories":{}},"2.7.0-dev.20180119":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20180119","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"ac7b87cabee6c0c12d9cffa30226f1314dff778b","_id":"typescript@2.7.0-dev.20180119","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-sP+ia023Zxogr8deze5FNraOKRLC0IBm4B4VSEQ47z2el0HLu4gkvYHZ7R4kPKlpBMx4TBMXEEWmiB6x8wRpcg==","shasum":"4e2f4b01a77305a6245c76141454bd5abfbc7e02","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20180119.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20180119.tgz_1516344351330_0.542229761602357"},"directories":{}},"2.7.0-insiders.20180119":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-insiders.20180119","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"eed85737b8371a050664c34f0ea1cfbb022d296b","_id":"typescript@2.7.0-insiders.20180119","_npmVersion":"5.5.1","_nodeVersion":"9.2.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-0TGfCUC0iNfIFMzSvcjFi4lmnZj9/RN0neZwzOjKq8GdZn0QfqAqjYGtR7sYicURUP8KKRlln9YbHICivPCYqg==","shasum":"556c59eaabb0758dd1a2f0b0602a355746d33277","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-insiders.20180119.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-insiders.20180119.tgz_1516403068172_0.9395666511263698"},"directories":{}},"2.7.0-dev.20180120":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20180120","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"a7c53c70d2d74520483a892eb3e9ca55daf655cf","_id":"typescript@2.7.0-dev.20180120","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-h9m3UrKUbgOulbtb6zU+iST9l+9DtavWV/UCCS5s8CZ80V37dnktZ0ZYFQDyS2w8tx1nNvLhgHxZ7w7qRqKAOw==","shasum":"64470f65617bc9cdd95b23dcedf210f83aa73771","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20180120.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20180120.tgz_1516429878923_0.2897972210776061"},"directories":{}},"2.7.0-dev.20180122":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20180122","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"92bde084c1e5ce42ac9491273dec3e846fc61c7e","_id":"typescript@2.7.0-dev.20180122","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-6TMOI45ftMLMcrApFLB6bAjQpTjb9YhowpXm8l0PoL0Yv+Y62Nlh49/cBmC/bLO45ILUcTy3e7vhHUFV67tw1A==","shasum":"c86ed9a2896f919e09f569eecc2c3de76a2693db","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20180122.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20180122.tgz_1516602521529_0.6360943089239299"},"directories":{}},"2.7.0-dev.20180123":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20180123","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"a3387cc41f2aa7d0266b7d293fd43fbdf3aca1a7","_id":"typescript@2.7.0-dev.20180123","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-zRAc41t9pcm1V05ezznaFuTioIesP4X6meu2ku3HInkLbmFFrxWdk4vsctJlqHXBOK1MWk3PVF4Nq4vepHLozA==","shasum":"7a16e507eca9fd0bf8be973fe13bedd8aef68977","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20180123.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20180123.tgz_1516689111869_0.20407956303097308"},"directories":{}},"2.7.0-dev.20180124":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.0-dev.20180124","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"5b5a00745997768fad7d3a4c98931af179fa277a","_id":"typescript@2.7.0-dev.20180124","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-I/niWDWjeglf84nrCBulBUXdsYpVsqQex4HS0H/v80aO5czXHvNnsWfR+0K9aJNC3Msx586HxsE6ayBVroTwcA==","shasum":"3243ae65cedeeb232c41550ed98e5f21255124bf","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.0-dev.20180124.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.0-dev.20180124.tgz_1516776525273_0.21239947946742177"},"directories":{}},"2.8.0-dev.20180125":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180125","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"3a807db8eee0a3e15a8bc0952fcc0f61786c174a","_id":"typescript@2.8.0-dev.20180125","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-D5kzJ/iG752X4Nko+Ga3B9Iu/96qj2MIiqAhDIVuzMIdVp1Hi7MHrDqzaU/FjLCiiq2OuhBdIRqkk3Vr5a57HA==","shasum":"4f55c6a03a4a366c3c1a2806eb98cd22e6e0842a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180125.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.8.0-dev.20180125.tgz_1516862092122_0.5625560011249036"},"directories":{}},"2.8.0-dev.20180126":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180126","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"cae4bc5e83b38e724a13a3f8d86920b7c167a757","_id":"typescript@2.8.0-dev.20180126","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-w5Gax62G8WFWM/OZrigy5IKWajiZ6r5ujd+IsI86uAECFMoyBBMvRzEG+rx19JKR86Ye8ZAAig+sZ90YWh+08A==","shasum":"a20a22470bb1aa714fe6023ea4aa2b1b0bf50dd1","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180126.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.8.0-dev.20180126.tgz_1516948457634_0.8019342278130352"},"directories":{}},"2.8.0-insiders.20180127":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-insiders.20180127","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"02e79849ef7259a1985391d85faea1cd6d86c3d0","_id":"typescript@2.8.0-insiders.20180127","_npmVersion":"5.6.0","_nodeVersion":"9.4.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-YVhjNsX+6kTkftiqr2om1Rf9OVq3fFux8P32Kph3F60AEp+btcHSTCUNgliM7LxJchUUbWGhIJfUEgDUI/B3jw==","shasum":"ceffc20983754a6127ee7c806676f0b30d0fc1ce","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-insiders.20180127.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.8.0-insiders.20180127.tgz_1517016086052_0.41613950906321406"},"directories":{}},"2.8.0-dev.20180127":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180127","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"02e79849ef7259a1985391d85faea1cd6d86c3d0","_id":"typescript@2.8.0-dev.20180127","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-TIbpsD4IOK38KMpBfUHifMO50tU6zi7rVMTgW3Aa4gb34cweTFlor//LeC14bMU1/HUs0AkaBG1Mk/a2tJ4TkA==","shasum":"289893b34fc86d6ad572b4cbf01e6df815e22fdf","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180127.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.8.0-dev.20180127.tgz_1517034671030_0.5888421137351543"},"directories":{}},"2.7.1-insiders.20180127":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.1-insiders.20180127","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"3815a795b970cb10c8d291180bee0807379a7ac5","_id":"typescript@2.7.1-insiders.20180127","_npmVersion":"5.6.0","_nodeVersion":"9.4.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-JwG57XB+OCV5aWA3mETCR3G/bc/X7qWYDep1Qz8kCiWp3kwgOL7A5Q+NMvDrzjNvtl6g4MYF5XT4TCp/9MgXXA==","shasum":"db1f0d903e86c0867ec5c6e04ef10ded9ad9399b","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.1-insiders.20180127.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.1-insiders.20180127.tgz_1517084364149_0.12700343527831137"},"directories":{}},"2.8.0-dev.20180130":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180130","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"6fadd4888df8eb9b984a1a91ee97fe763aced3b9","_id":"typescript@2.8.0-dev.20180130","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-vpUMJLlpBucunsK0M+VzpVzhTF8Eof+/k9UhoK35YZkIAz0J3VusAgE2GGy7SdYHrsON58Yv/yVrq9q23/RLvw==","shasum":"69df189a9ee5c9e65899a9d505ad7b34eaa2023a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180130.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.8.0-dev.20180130.tgz_1517293926746_0.23661555908620358"},"directories":{}},"2.8.0-dev.20180131":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180131","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"6419e7ca4fbed1c32d5b752fa35f60d973a39ca3","_id":"typescript@2.8.0-dev.20180131","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-oF6AgiagZhSKUWzig2eKVrAgeWBsxOIt6vd6Zb6kAkYjLccDQtMUm0877C1is/9X/x3GhntxYiApx99U070iXg==","shasum":"358c965092a3f40db75e6dd24f43307f6adce7d6","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180131.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.8.0-dev.20180131.tgz_1517381295069_0.23462358978576958"},"directories":{}},"2.7.1":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.1","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"0951a94a61dd6f1d4032ac2a549444d347d4927f","_id":"typescript@2.7.1","_npmVersion":"5.6.0","_nodeVersion":"9.4.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-bqB1yS6o9TNA9ZC/MJxM0FZzPnZdtHj0xWK/IZ5khzVqdpGul/R/EIiHRgFXlwTD7PSIaYVnGKq1QgMCu2mnqw==","shasum":"bb3682c2c791ac90e7c6210b26478a8da085c359","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.1.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.7.1.tgz_1517419329317_0.8297794633544981"},"directories":{}},"2.8.0-dev.20180201":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180201","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"f96c04cb2b450625190722f92eee7b7db268787e","_id":"typescript@2.8.0-dev.20180201","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-rJoZuRqxr2aNjlud7NoeMARbY7/bD1AtQZjWIL8ONzr/Ym0FWpuu0f+t0zv1bRx5aZFue1cwFXw7Z+Gbvv6+NA==","shasum":"b4f4d5fdeab745ba4a9898542d9f3dde31ed9994","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180201.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.8.0-dev.20180201.tgz_1517466988864_0.5271698676515371"},"directories":{}},"2.8.0-dev.20180202":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180202","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"06c5d393b59d3ac7734e11aab73e16d01cd2ca73","_id":"typescript@2.8.0-dev.20180202","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-w9o+8TEMPx8mXmRVj4glcL/DtVnQQMNRrZOzkO6AESXkj+P3ifDVIB9fbeuHkmwGb+Yt23Z6fNT6XlUrDCKzSA==","shasum":"09c96851af6e29f50f10a877c5726ae1a94761b5","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180202.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.8.0-dev.20180202.tgz_1517553658412_0.5032443227246404"},"directories":{}},"2.8.0-dev.20180203":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180203","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"89de4c9a3ab3f7f88a141f1529b77628204bff73","_id":"typescript@2.8.0-dev.20180203","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-YzAn/qLiytIjeYMuuAviZeyrW31O3rvTC36lJ5CSIKRAl2C7r1/hcbNLNgVoVnFrpyvCuwKPYQnblqszhf9bPw==","shasum":"75a96b26dd3f438143d9ef444ef57c33292f8e87","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180203.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.8.0-dev.20180203.tgz_1517639732544_0.8922425315249711"},"directories":{}},"2.8.0-dev.20180204":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180204","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"3ef1b56ee9afc7ceba7e3d5f25081ca09882131a","_id":"typescript@2.8.0-dev.20180204","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-0OIYj+jIWs9T0H0k5oHEMz0l0AvA38KDFEpd6RrIxTEpvfDPmCMHELpGfF/7bVwtyODrvm2I77z3D8tOintFMg==","shasum":"5cb08a98792693bad7ef4c184111777bc9dfa754","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180204.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.8.0-dev.20180204.tgz_1517725765976_0.01191381667740643"},"directories":{}},"2.8.0-dev.20180206":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180206","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"10dfb93299d3d6afd12cf621d60ba1aa27cc0809","_id":"typescript@2.8.0-dev.20180206","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-QjAB6EIinOa5znHR8GLbFwDD6bTTyoqIOSCBuX6xTiMQQFhpAxViP5Aux4DzpdYz36qG3mqAVJKICJAw7qF6eg==","shasum":"a62f6b732668b57a1b2e44feedf44d323821ea45","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180206.tgz"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript-2.8.0-dev.20180206.tgz_1517899174846_0.04756855615414679"},"directories":{}},"2.7.2-dev.20180207":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.2-dev.20180207","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"^2.7"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","gitHead":"24fcc3f554bf32d8204128a88ff63d7a8c4b2877","_id":"typescript@2.7.2-dev.20180207","_npmVersion":"5.6.0","_nodeVersion":"9.4.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-6BM5tdFCVxMNWdgq07rDZo9nilDCwen3oz70q9aoxsCCtm2/gjWJ2q3NisgEfGglgKJKhAFxuMV6GrpWp0SkOA==","shasum":"cce45b8a291be54342d10947a7c5745d38f5b373","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.2-dev.20180207.tgz","fileCount":73,"unpackedSize":36370918},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.7.2-dev.20180207_1518048730386_0.17862674609605445"}},"2.8.0-dev.20180208":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180208","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"871e71d4efafb128c5bea4dcdd262adf92a1e72e","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180208","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-iGasZX0HPnUQwkhRuTDNX1P2HWRozq5fugCLaBFe+Jc/y0S8/DKjhaRetOrcsaXrP4bJyRqxX9H/a/gnvV8SpQ==","shasum":"ea47e6f7bbf1b6c154670b450c9e5b794ed94013","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180208.tgz","fileCount":72,"unpackedSize":36387151},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180208_1518071891845_0.4712530538694193"}},"2.8.0-dev.20180209":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180209","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"868a9ee117173a60167626131a78eec00f19b716","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180209","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-wGZk9O/i+d3IlCyvMaQhqMAmop5JH57QeEPn/b5BzZI91tRcXwDo+aSPdYWf72BIpK24KO7FXXzr07Kc/uxPKg==","shasum":"28d7584c611dbdae9f839864c8d1a1d5a31a1bb9","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180209.tgz","fileCount":72,"unpackedSize":36398211},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180209_1518158244778_0.05520770015332088"}},"2.7.2-insiders.20180209":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.2-insiders.20180209","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"^2.7"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","gitHead":"24fcc3f554bf32d8204128a88ff63d7a8c4b2877","_id":"typescript@2.7.2-insiders.20180209","_npmVersion":"5.5.1","_nodeVersion":"9.2.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-vdlhXAfjTgw6FVUYJKoCnatQuoluUv6dqXl5qV4IXInFRzC/8nHysxUSZG14wrunMI3FsejI2tKmzBLrhw6hBQ==","shasum":"f5fd92cededf56e8d20f7b49f75d086a80afdf3c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.2-insiders.20180209.tgz","fileCount":73,"unpackedSize":36368095},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.7.2-insiders.20180209_1518217333927_0.3502067756041636"}},"2.8.0-dev.20180210":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180210","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"57d94b96612ef7e9c6138de9c0cc8ba4715d1c19","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180210","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-E6KoA/iaDIX3J0D1jN/qJfdUTkpuCfgR+oC6o1aBsfcwou2ZLco5k9M9O39lekFFmgT7JttPMQoaZputbu3brQ==","shasum":"aaed45f60c53ea6c866bc9992eb56387982919a2","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180210.tgz","fileCount":72,"unpackedSize":36426156},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180210_1518244738675_0.7204054218979552"}},"2.8.0-dev.20180211":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180211","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"611ebc7aadd7a44a4c0447698bfda9222a78cb66","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180211","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-noZFjJ9q+hdgtSi9oz0HSpe305IjFf5MBuFeioj7k7y3Y1rAOE7KgfBYoKBuVpuPENHzCk4EJlv+nAl6clBw5g==","shasum":"864c01de310ae18349b631f77b2e067604e37560","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180211.tgz","fileCount":72,"unpackedSize":36439292},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180211_1518330739674_0.8676419419039227"}},"2.8.0-dev.20180213":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180213","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"74f01abfcff60806e87f2af5ad31ffd425af806f","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180213","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-U8OjhKh3mbQVYc6LIKNL0VmnPD2gMY0FYVaXYxBAKBY0lyMApcNY6b67BY2ifyn3s9Mj6ZhxPPnqx+PfaC68gg==","shasum":"c04f5189ecc1feb29e40318ebcfc396fbe8ad832","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180213.tgz","fileCount":72,"unpackedSize":36409620},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180213_1518503766125_0.9299734923369067"}},"2.8.0-dev.20180214":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180214","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"80464e8ff145bae5f09253f626d94556f2077f0f","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180214","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-B8FazLtI2OX9uVwiyEXk6bqtz1HPjWKYFR5r6C5V4+EQyMzkGPVtdK/JzD3IID4ZhcZrA42sBJReWrzVHJddcQ==","shasum":"cb60dfd8a47d15200412f29310d6cd28493dbb08","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180214.tgz","fileCount":72,"unpackedSize":36421845},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180214_1518590145393_0.08998105691341252"}},"2.8.0-dev.20180215":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180215","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"8518343dc8762475a5e92c9f80b5c5725bd81796","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180215","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-JoMYuK3tVVKtAIpC4/6Nr2PszRb0CUlK6GevpyZN4EbtuynJ9W4LT3UoOHXTNDkf3e1QGm5A0a74YZkVKQP/JA==","shasum":"2baf13be7c234a1a79a77552bf015da31e3fe4b9","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180215.tgz","fileCount":72,"unpackedSize":36422127},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180215_1518676784461_0.5078019503200384"}},"2.7.2":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.7.2","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"^2.7"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"90e6f4984a52c6e403d2b799492ea81fd5d9dd71","_id":"typescript@2.7.2","_npmVersion":"5.5.1","_nodeVersion":"9.2.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-p5TCYZDAO0m4G344hD+wx/LATebLWZNkkh2asWUFqSsD2OrDNhbAHuSjobrmsUmdzjJjEeZVU9g1h3O6vpstnw==","shasum":"2d615a1ef4aee4f574425cdff7026edf81919836","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.7.2.tgz","fileCount":73,"unpackedSize":36366737},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.7.2_1518720313356_0.35853084358629217"}},"2.8.0-dev.20180216":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180216","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"cfc234f959db400023e303ded85c2566408d807d","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180216","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-M2//dOMpHN0cWCuKsnHAbGhk66UX+0MBQ/stN9FlVIs1mewYO+hXeWmfiHRv1KWrdgI8lADPFofvGKl7hjggGw==","shasum":"450849396dab789e8d1added80f08da9115347e6","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180216.tgz","fileCount":72,"unpackedSize":36413563},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180216_1518763327190_0.6523202713183918"}},"2.8.0-dev.20180217":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180217","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"b3edc8f9f4d9cf4203c4c4493e4f0f3dc96c845d","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180217","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-2eAO3wEwHhIQtPuonZrxcvJo3ZaiwIRmMM1VkTKOr0GGm3rhboPYxaNWEYXKjkYHy+WELrMMKCAJkzlcSwwatg==","shasum":"d695c2e459d3f66944f364019cff6ed65ac260c9","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180217.tgz","fileCount":73,"unpackedSize":36521242},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180217_1518849410911_0.39801835054802814"}},"2.8.0-dev.20180220":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180220","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"7e908dbe91a401102535630d63425d90d9015c0c","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180220","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-nGJSSYmAmbhxFBs7Din47ldlRWjibp5s+ysmIRmVwDGJ8u6bVZcEqV/Tnh0cXbebEvQLp4C7xlstF21p/l73vA==","shasum":"5ac7b8f82c6adb4ba000bcdcebe99db0bf71f950","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180220.tgz","fileCount":73,"unpackedSize":36522665},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180220_1519109059547_0.6176488917846343"}},"2.8.0-dev.20180221":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180221","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"4833657c335bcfbc16975437ae3639c32ea148c5","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180221","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-V53SRiHY7DtoUx8j2aPdyeAZLqJ9cIFdzEPZMKbAfvAsxSXCEZ8v/Zz/cw7g2RzwNvE62kM705bKRw5LgYLvIg==","shasum":"6f86d3ade73aa553582ba66accbf613cc1a348f4","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180221.tgz","fileCount":73,"unpackedSize":36520782},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180221_1519194942654_0.9404990572442904"}},"2.8.0-dev.20180222":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180222","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"95213f00834ca380627f2a810ae49a50b281d86e","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180222","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-K7RvdG7MuggHhq19XmjTgfXyFzbekUlwmqs8NY4RsTJRBg0dKHLofHkx7JdiESNSyq7aw9EH4zPLWQJ99f3BHA==","shasum":"50ee5fd5c76f2c9817e949803f946d74a559fc01","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180222.tgz","fileCount":73,"unpackedSize":36535988},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180222_1519281553584_0.5102318370466847"}},"2.8.0-dev.20180223":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180223","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"e8fb58709716c980326615047d34d7902c64af3e","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180223","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-RcoAg+IpPWgIObKhfgTZlq5OlQkcOzE+Y+6zIxakVrv8mhq1YOHdjgNLrSmD8PjyzkbIj44/dWxvuI2bxzGVAg==","shasum":"bd069be8684dd1ab76c183ae8ef4ee49d7019492","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180223.tgz","fileCount":73,"unpackedSize":36528369},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180223_1519367710819_0.43793163817051717"}},"2.8.0-dev.20180224":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180224","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"b31aa4e012fc4c2afc9c2200f18b9e79edac160b","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180224","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-fbkIRWQBJ2Iwgjev4ekCuHEqNJEgSoc18ER5gHiaO9HiLuVZCCQBuEKRzDd6EZaQ3EYn3T5aQCphdkJsdTX2NQ==","shasum":"15fcc62103d2e5bc34dbc3615c3b781c09db440f","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180224.tgz","fileCount":73,"unpackedSize":36569255},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180224_1519453896092_0.9886814855552231"}},"2.8.0-dev.20180227":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180227","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"32c63a26284c0fcf6dfbdce709f3da680c2940d9","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180227","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-0SnnkCkO+ZxW6un8Ylyd1+q2gyPYoev3DGWJAhpkQr/P6RqmYd8lHuZ/T8vNXCPfUaQygJu3rPLMNMGP+lSnEQ==","shasum":"8cecb57a101499bf024ebe4b1fa5a5873d68499f","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180227.tgz","fileCount":73,"unpackedSize":36607414},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180227_1519713667984_0.6264634322223994"}},"2.8.0-dev.20180228":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180228","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"c1128d6957c7e60f54ef6b7c5cd7e1308fa2bb69","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180228","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-4T/VzD14bhgljLb5S4civ2CuSE6pG0i13lvMpizsCteImSpWWesqKbgpPoxRdlDUqBpEUzmUe2Ivv/K+eHygsg==","shasum":"b10b5b25210ab3cf56ce563c22adbe1aad801722","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180228.tgz","fileCount":73,"unpackedSize":36609268},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180228_1519799880089_0.7323577842893272"}},"2.8.0-dev.20180301":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180301","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","gitHead":"d0cdeef51206b7fe877a2953550067f4e11d1546","_id":"typescript@2.8.0-dev.20180301","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-lk3/1760gfEGP/lHtEm/hZnXx4LQAAyYz/5UufMWxMJ3jk3WxFaeThI43QyuuikBg6RdxpnYRsei4OyyzjF3gQ==","shasum":"ada6c617e5d592a90bc67c4f68e953b41682c4a9","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180301.tgz","fileCount":73,"unpackedSize":36609585},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180301_1519886880519_0.46640639564738184"}},"2.8.0-dev.20180302":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180302","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"dfa1a90b25b0ea171470de9a207075948cd34eda","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180302","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-oVgvZ/Erwb0XTz1nGqcFe7PxetVEpLVZxUEFtRUgMmT4dWrMnjpaWfc23JHPIMvBm3eP8cWRhKhcuOYIEjXWmg==","shasum":"e40c3be7aeac0bfce3c695e3043cbb2c42f99fb9","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180302.tgz","fileCount":74,"unpackedSize":36623418},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180302_1519972572046_0.5904230102353956"}},"2.8.0-dev.20180307":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180307","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"1e06637652ffc05c79c05e4112cea7d561cc17a1","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180307","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-v8gWVik3uKhHSzx8VEKDR9t/jAEtJrxgwBde9hbt6re579n/xjB7ROUCzvcy9Le4BzxAQGmOOP7HsQG+h4Nvzg==","shasum":"9fb3f53fecf6a84e17c1d222f216bbfdcb381a92","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180307.tgz","fileCount":72,"unpackedSize":35498315},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180307_1520404948670_0.0708791791311345"}},"2.8.0-dev.20180308":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180308","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"88ba1ef2de9674fd6baae67cfc6aaf04cf63891c","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180308","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-UI8bxYQmgCSdS+Keh7w7KTXSbsJ56GFRHeNxhpAyhrEuP5Tf8pikoAa71UaPXZJBWnP0ZAscHlXjrPlrfwk4Jg==","shasum":"d089f067fa8b7190984bc2ea340679bbddc1bd62","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180308.tgz","fileCount":72,"unpackedSize":35680538},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180308_1520491837093_0.8298272053837825"}},"2.8.0-dev.20180314":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180314","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"8d172aa353787a54e0cfeaaa114c290f7dde6b5a","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180314","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-WDW4Dn7D6Foz4Q/1HbGurWav2AVT8WKIrzrFcS1obdTV+7yfLdI5O+iAQHunl/Lc1pDAGORpF6NeMDbzpX/1fA==","shasum":"f22fd0d7d2f28c2b5b7fc2eecb84df0608aa1efa","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180314.tgz","fileCount":72,"unpackedSize":35888463},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180314_1521009486549_0.4085662925159581"}},"2.8.0-dev.20180315":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180315","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"0666b281b0a33bfda98edb982af71d5e541f7468","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180315","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-oeNSiBFB4v53b/2j3ZhocSUs4qRjf/quv3Kw6rZGdz+B53IrWWKAYH1BmKk9Vvnk/2Q1GZNOvlK1oSOvqp9/iA==","shasum":"8e2e49131bdd21b938b5c51e04f9cd068528907e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180315.tgz","fileCount":72,"unpackedSize":35900248},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180315_1521096424294_0.1749125748960736"}},"2.8.0-rc":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-rc","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"b5dfad1f61b188c96b86899079e727455f4a8412","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-rc","_npmVersion":"5.6.0","_nodeVersion":"9.4.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-PUUMWd0sLgmrLd+zRxBgHC1sCfkMvkAid48gCwhAULMxwjbYFyHkYqF1AOnF0kThXWi/K2jb2nBmA8kunRxvWA==","shasum":"a0256b7d1d39fb7493ba0403f55e95d31e8bc374","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-rc.tgz","fileCount":71,"unpackedSize":35869707},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-rc_1521147790772_0.34349149110103494"}},"2.8.0-insiders.20180315":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-insiders.20180315","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"b5dfad1f61b188c96b86899079e727455f4a8412","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-insiders.20180315","_npmVersion":"5.6.0","_nodeVersion":"9.4.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-IQrctc+qh1AA7ckc9W/mZEyd3+O1xTH9I13eLWd5Nmri9WL3NUFGpL3pPkc8CWYpAO8BForoM1brS0ZKZqk2gA==","shasum":"be9282e0240f688109252d2e553ecc06120a8719","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-insiders.20180315.tgz","fileCount":71,"unpackedSize":35869812},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-insiders.20180315_1521157986122_0.9365604216947683"}},"2.8.0-dev.20180316":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180316","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","gitHead":"19ec83fcdfc756aff805490fd1d1ab0048b56fff","_id":"typescript@2.8.0-dev.20180316","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-ojjBNFI89XCgC1xs8+gbDDvbm69M0TKcpkhlZTkrSpjdSZEvBl6VRQ5yh4ea4JaV5SpVwIMiR7K53SQd8grvvw==","shasum":"b33818a7e842d127a9af3f5d51d30b81df4177d0","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180316.tgz","fileCount":72,"unpackedSize":35899829},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180316_1521183224529_0.4524455217649823"}},"2.8.0-dev.20180317":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180317","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","gitHead":"bb23e9601f5ea0b4fe1e97545ef01535fa18a23d","_id":"typescript@2.8.0-dev.20180317","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-CorxqJ2TC+ROURlNOD74zhgLnWE0KNwI8ZDB0g099DsEr2H9l8YDftcj0iBmDlvfLcZUIaidwG7lU4jAp6QlHQ==","shasum":"bb9a0130f6e8953c0afc7c568b1215b80abbd791","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180317.tgz","fileCount":72,"unpackedSize":35902487},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180317_1521269007082_0.1722882807060031"}},"2.8.0-dev.20180318":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180318","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"c48662c891ce810f5627a0f6a8594049cccceeb5","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180318","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-3yf65OziJSNJhL5PYUqLNr1Bm7wwZA6HJ/hcMiu1o33MIZiTTWKCy2IzE9932KQYqmbPLZxPT4RS/0Q5DBJnWA==","shasum":"3216a51abd61cdf45c0387bc180f6de556916448","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180318.tgz","fileCount":72,"unpackedSize":35902456},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180318_1521354719862_0.7507660245307048"}},"2.8.0-insiders.20180320":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-insiders.20180320","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","gitHead":"0f024f5e32b7b853ae962a005113c51bb468e418","_id":"typescript@2.8.0-insiders.20180320","_npmVersion":"5.6.0","_nodeVersion":"9.4.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-4wlGlEyue/zAplalS1GOzaoP9lNTUh5ewLV+5v3s7rF5W0q9o5GdWUSjkpnzh6WM23AXBKHq8tmn0q5Qs6DFsg==","shasum":"30fb1dd0230a271a9b174820feafdc9d8da2497d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-insiders.20180320.tgz","fileCount":71,"unpackedSize":35884741},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-insiders.20180320_1521518185952_0.5572307791416204"}},"2.8.0-dev.20180320":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180320","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"6aa0afb87d97e0f03938d39e488c69d03d663242","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180320","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-rvTiAsXzIeZpifulDClAJsD6CgsaLIj/BhnO259Uxs/zjvtDz7PG6Ai6X9c3xpfnU3S5O7TnCX7xq0cdDUDGYw==","shasum":"4fe6a6509e84a77339dbf512e81ec35314e9530e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180320.tgz","fileCount":72,"unpackedSize":35902500},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180320_1521527736125_0.04096175080974329"}},"2.8.0-dev.20180321":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180321","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","gitHead":"6a86534d815325c3945c560d4252c666ea8123ef","_id":"typescript@2.8.0-dev.20180321","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-Rb/PG2seK4smuKLNlN5xiTtorVjkRKKMGuCNmwWyEXcZJlaLyKhlyYh4/pcbjVc6e1Im0TLTFXapSak7XBuW0A==","shasum":"7e6f299b2a34e4171c5e25ce98c8986b8c266207","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180321.tgz","fileCount":72,"unpackedSize":35930465},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180321_1521614280321_0.5289052819885991"}},"2.8.0-dev.20180322":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.0-dev.20180322","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"16697f6c7dbf411637fa975385ecf43ac295ec82","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.8.0-dev.20180322","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-dSYa9IAoj3CRAxtKx9+cSCQLetB7OLtHXhvQWeWY6PPIXvbpAC41ulQWX3TUAkMYU9NS/kGIU8TFM9VFpinJTg==","shasum":"4f67eccf5670b17b062a4aa868e71ea94ef5c7a2","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.0-dev.20180322.tgz","fileCount":72,"unpackedSize":35939999},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.0-dev.20180322_1521701223562_0.9930831365343977"}},"2.9.0-dev.20180323":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180323","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"78c12cdb9de090b4be528571ffb5434ff42dc133","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180323","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-0rhbdcxqnuqvOuJ2t/nVtk5lX02V2qwKCCWQuFpVhOJU58ALieTlAo19Y5XHV99pbaUpGwWYp5zk/Go5ahSpFg==","shasum":"9b33b1366a2b9af88e5e4de9a8e502f1df8b5aad","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180323.tgz","fileCount":72,"unpackedSize":35968734},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180323_1521787251847_0.671677178528191"}},"2.9.0-dev.20180324":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180324","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","gitHead":"9557e4ad961c97e553e85e94a08f39ff72d3218e","_id":"typescript@2.9.0-dev.20180324","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-NWWMdVWetK2y0QII2OWWHZaZMRrGFCVe+fGFRlo6ThhqSIuxnkbFGiIx8WUopMX5KUQq9aTgJGy11I32oqCd7A==","shasum":"40c59f9a8ee09b788e2ec9b9abbd24a85bcedafc","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180324.tgz","fileCount":72,"unpackedSize":35972461},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180324_1521873741215_0.16030879834903078"}},"2.9.0-dev.20180325":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180325","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"3710218d95e5dd07e9452a6d8a7a80149632062a","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180325","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-w42V3MoOXi02+t/dd+WsuF6HRLDSJACeiFHxcRfvsB0INsw7xu9cGuh0fwwOYQK8HwT3yyKD4hVts8v45Ki6zg==","shasum":"9c78b44c647f58a276a7e2317cd0e89163d87aca","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180325.tgz","fileCount":72,"unpackedSize":35972789},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180325_1521959643737_0.9198226384111372"}},"2.9.0-dev.20180327":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180327","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"dcbc478efa19435e74cb1cbea6405b336533e8d7","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180327","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-p31rW79yR+Nkf9czoz4qKnBkI44huOZrRyYpk7gaAnO4Z1La0uPilAy9ZwsfsUIdppeK6FP4UCN1J30VreJBng==","shasum":"f27ca1d6761c7de5e530ead9c9321b9f66c13d1e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180327.tgz","fileCount":72,"unpackedSize":36096916},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180327_1522132356582_0.4272406707503891"}},"2.8.1":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.1","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"b28e3b09dcce0e0d9100336c55a3ec27a3eabf41","_id":"typescript@2.8.1","_npmVersion":"5.6.0","_nodeVersion":"9.4.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-Ao/f6d/4EPLq0YwzsQz8iXflezpTkQzqAyenTiw4kCUGr1uPiFLC3+fZ+gMZz6eeI/qdRUqvC+HxIJzUAzEFdg==","shasum":"6160e4f8f195d5ba81d4876f9c0cc1fbc0820624","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.1.tgz","fileCount":71,"unpackedSize":35900541},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.1_1522167629942_0.3962771008981971"}},"2.9.0-dev.20180328":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180328","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"66bf5b4e9d2796dd03f5a5b65a9f5b51f3b282a8","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180328","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-Ubfmv2U23rqhYDKWH/j1YYnlrcGxmJj/ZBK+IeNfvkuaYTIPT+8+4SrMyfgeDe37aX4V8G8zkXx0Nga8OCO/SQ==","shasum":"7f38af87cba211e3a01933cca6cda830389b22f4","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180328.tgz","fileCount":72,"unpackedSize":36109626},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180328_1522219433359_0.12771270839023408"}},"2.9.0-dev.20180329":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180329","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","gitHead":"e40f2943b1b6f96710db82555b29c760f2f793b0","_id":"typescript@2.9.0-dev.20180329","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-XBp1BUOtS2P2dqIe5wxLaQuyV3NfOUDX6aWMPk+Q1lYIdq/lI8k6KQOQ2BEA2jykxYuhyp2mKVvC9CzABnHLiw==","shasum":"7bc0b6fa6cb6b8367b0e37e995f2b3c0d542609b","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180329.tgz","fileCount":72,"unpackedSize":36100458},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180329_1522305426304_0.7658409489236728"}},"2.9.0-dev.20180330":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180330","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"7714a2bb5be7b2ebe04601f5b4e518ce07057408","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180330","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-JWXn30Tu6cRkG8feC7Qr+Tkm0A1iDlpSo9dBcVaK+mGeaegnfeG5aBzNG5JMTYiG8UMuhDqQe6q2RvPucRybAg==","shasum":"7c3bea24f39e9d2bdf8114d938ddf7a6b02d8861","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180330.tgz","fileCount":72,"unpackedSize":36148855},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180330_1522391363946_0.8406185879991561"}},"2.9.0-dev.20180331":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180331","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"9b558f95350a547dffdac96334157d3b2f74762e","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180331","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-QO5Ie2y41KStRdnqQ5Aw4RHFOfu/jyu4K3ThoTqSem0kDDVVHI+MitTuk7oa5h/e5VrCmYZ9QykPyO0J9HSVMQ==","shasum":"0e2c40306a3e41b72d9a0619ff18a24ddafb8e71","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180331.tgz","fileCount":72,"unpackedSize":36145239},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180331_1522477747944_0.6931420361844773"}},"2.9.0-dev.20180401":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180401","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"b3829523b2b2928b15237206e171a5465dc2211b","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180401","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-OLhMZJekddnPK/VF1iFX6hmUm2jdcOjGviTS0zqcUQeqtsWhn8zog+uxj8AT6Ri3Jok5kyQHKBT6pNO2JG/ydA==","shasum":"30c7fe88afddb11bf3ecbf6951c0dc6b3d1afc93","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180401.tgz","fileCount":72,"unpackedSize":36147948},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180401_1522564078229_0.8447503629659365"}},"2.9.0-dev.20180402":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180402","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","gitHead":"0fd8fb8697ed88d66cea117e165f68a9ac010e8d","_id":"typescript@2.9.0-dev.20180402","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-3KesGmXK/niHKaJUAHrZTmJ/fLEAgCtG6bWo05VF+b9WLoy+FMNYxuC4bQyaJf0WLydlKHR8RIjE8Z2rK+6Q8Q==","shasum":"a443761d82212ec5626289b72055492d888b9b26","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180402.tgz","fileCount":72,"unpackedSize":36164174},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180402_1522651009027_0.8543317508514325"}},"2.9.0-dev.20180403":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180403","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","gitHead":"ae61ebac8d995dca89728c750914c07c553a22a6","_id":"typescript@2.9.0-dev.20180403","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-RsqEH06pfGHHCAu9crY8LcqLTNGhJCOqDbnuAlK+qPB4KtsFQjaN6Bywrj/J2FEuRfJGow2nkoHA24WOFovjMg==","shasum":"bd53070924f7da6c087aa0d9f955e31b4231496b","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180403.tgz","fileCount":72,"unpackedSize":36243587},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180403_1522738026232_0.7110983833900435"}},"2.9.0-dev.20180404":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180404","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"db74229a89246963be198d8a5c3931b4907b3ca7","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180404","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-UdM6mevKwRvKuBeZqJVuJH7KMqcWII7hO0Wy1hoSv6XFBysKmEVaCS7nImOaz7bubLeKMXpP/dZIsHZRZWg5Dg==","shasum":"a2378f56a3cccd36fd11e717a178a351c40bf53e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180404.tgz","fileCount":72,"unpackedSize":36276480},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180404_1522823567382_0.29864449513291436"}},"2.9.0-dev.20180405":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180405","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"de669cf82754980d35fbcb607f4cb10e2626da39","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180405","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-8okcz49OWZV8AwaRO0xzQiq+0PdrS20k26eopF5sGc3hjM2852LluBw7/uiERX/RF3b4VBUTIb/TZmUtOJFH5g==","shasum":"c204f6d1a8e5263dd3e7f153e25a4cdf0d2693ac","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180405.tgz","fileCount":72,"unpackedSize":36309831},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180405_1522909874043_0.9575367037392084"}},"2.9.0-dev.20180406":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180406","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"2167b244414a83ccec18edc6d88434cf0ace7475","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180406","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-pzUsBB3jZnQfpLUs5hLvI3Pj6+LI1r/6pnodLXIDeNkgS8xLkWQTs2rpfypLg10gidwo3mxABFzu+e9OCU3ynA==","shasum":"9a3cbe5a27a9dfb862c21e5f3f233efad753560b","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180406.tgz","fileCount":72,"unpackedSize":36320770},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180406_1522996205290_0.3835805023152785"}},"2.8.3-insiders.20180407":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.3-insiders.20180407","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","gitHead":"7deda06f644f871f3978dfc0528612c97bb3c15f","_id":"typescript@2.8.3-insiders.20180407","_npmVersion":"5.6.0","_nodeVersion":"9.4.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-9HdFCZSIr3cTedvmmYR3EssSAdBuOqmqDyjSsqcpH5UBG/I488g4oFvUaXP33x7XKJ9lissfyNeUe15lXxzvDQ==","shasum":"915f010e258e51c9539bcf986cfd84d0271d8cab","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.3-insiders.20180407.tgz","fileCount":71,"unpackedSize":35934822},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.3-insiders.20180407_1523060716298_0.7910717543691477"}},"2.9.0-dev.20180407":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180407","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"4170f35abcec2710c4549d0b3a14d39dd9692988","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180407","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-Tg0/hU2hSz+4pb5Lj5+bj1uLldN7C8NO5Ik19WfftMlpeXRyZQJzglV0oncmsXOfN9gG+JC0xnO58YspE6sZ1w==","shasum":"04b2460c4052fc389b7f33c021aa0c465defd51c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180407.tgz","fileCount":72,"unpackedSize":36328534},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180407_1523082732334_0.1576601007776257"}},"2.9.0-dev.20180409":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180409","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","gitHead":"ae0ccf340fddb398bfe1ef2e1522624d47ce9b18","_id":"typescript@2.9.0-dev.20180409","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-yGz04OMwldm/opxRu9xKM9IAw0SalrKTfSX6Ut/4BbwXDHhfSG2fLBJTxREQKHSR8azv9aOBfwhGvIbdc5FaVg==","shasum":"c2a68e9bf45157bdea38c4e68a752350d42440df","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180409.tgz","fileCount":72,"unpackedSize":36328788},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180409_1523255582738_0.9232850703194744"}},"2.9.0-dev.20180410":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180410","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","gitHead":"668c5ff5d6eccc410253eda41e3ec18ed629ccf5","_id":"typescript@2.9.0-dev.20180410","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-0f47t10YM2c5fxEE3opmvok3hlZiJhFYSHpgFt/VgY4BaBf8uRIs1vuZTD53uo5UWpBztzTjbS2Nf0bhhTsQaA==","shasum":"5fb2fc8c3e3169493d9ce59057ccbe6cbfe12c40","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180410.tgz","fileCount":72,"unpackedSize":36349050},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180410_1523342455830_0.8875135115699424"}},"2.9.0-dev.20180411":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180411","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"1fb2a12b0fe01ad327b239625f8333d20f59543d","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180411","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-5YCBzhxdkzCsH3/AWBCiaF1xB6dNs/KGdo1F0uRcouL65YL+d4+/2kT26AoXpFxeRfaeDTqX4Ds0ndYdaugnyA==","shasum":"0791768b1e4d4d10bfc8b84cdf1239050065c859","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180411.tgz","fileCount":72,"unpackedSize":36406439},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180411_1523429677998_0.9531285054448404"}},"2.9.0-dev.20180412":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180412","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"edcf08714515f2a9ff5cbe65f4e8c233c11582fa","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180412","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-QLEitLx9FmompsUejhVTTJBQwikdqFaUDizTtN7rHWb0PkaQ0USjoiJKg+/cPAeB/eLsXv5Wiaf1gy6xCZRJHA==","shasum":"5380b2afb44b720b0d8164f844b90ebd81948a7e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180412.tgz","fileCount":72,"unpackedSize":36412304},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180412_1523515259456_0.19949766421836923"}},"2.9.0-dev.20180414":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180414","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","gitHead":"23ed9f842301ab8c7894823afc7a356da960adcf","_id":"typescript@2.9.0-dev.20180414","_npmVersion":"5.6.0","_nodeVersion":"9.4.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-9wS/WxRJGXYs/EFNS4HrByWi6bGHPMhqEecAS9162kAZkTrwk75C9yU28ZjZ/rTgkXSqgvS3jWxgGhe3Nrkkvg==","shasum":"10193f90523b29802ecb68ecf6199007d62add50","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180414.tgz","fileCount":72,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180414_1523690660845_0.7746904707515669"}},"2.9.0-dev.20180418":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180418","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","gitHead":"0bc6470f1d0b28f48365fdd9ff628192c3e2dcc2","_id":"typescript@2.9.0-dev.20180418","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-PyWtc0u50ypLNWISWq9O3nZ025Ar16d94Ukv/qMyL9AUWXz5MTPvFdyFqPrwyLamoQG3sJlykZQefAFHhIxLlw==","shasum":"a3097c3d478d0ea11068a18e643055fcd74d8cb0","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180418.tgz","fileCount":73,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180418_1524034705975_0.9390557998403479"}},"2.9.0-dev.20180419":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180419","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"238ed7a94ca78350294548a164d75624a787e119","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180419","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-Fe7WMJJlAHWC+s7WKxx84UhgH5mdJirexp3Q7cU+SY6TD07/UtNTT49SeBPuvkoDdhoDDgNLmfaU4b9Q6jJDgQ==","shasum":"ec2f6b1447de34d6357bab8b669eccdc55288abe","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180419.tgz","fileCount":73,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180419_1524120857488_0.12110367807771372"}},"2.8.3":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.3","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"80fff90e919d358dad9e3e1d3a49b5deecd12633","_id":"typescript@2.8.3","_npmVersion":"5.6.0","_nodeVersion":"9.4.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-K7g15Bb6Ra4lKf7Iq2l/I5/En+hLIHmxWZGq3D4DIRNFxMNV6j2SHSvDOqs2tGd4UvD/fJvrwopzQXjLrT7Itw==","shasum":"5d817f9b6f31bb871835f4edf0089f21abe6c170","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.3.tgz","fileCount":71,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.3_1524172828432_0.703407541791931"}},"2.9.0-dev.20180420":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180420","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"2449e8db1c8e956312e2b755a49ab1a69867354c","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180420","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-diqOetIH0TQcgAdyl9mNOd1HOP3khAdFNaoZYPAZEwp63s1TtntmsAZcwdeqDCOsifdBPo776MjBxYkpqTUjOw==","shasum":"c828fdf776f95e858fa8f9276eed27ca4c320099","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180420.tgz","fileCount":73,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180420_1524206483750_0.3751161634890179"}},"2.9.0-dev.20180421":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180421","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"8b0fd95ae50c2b9fb1c00c3fba79babf7def0df8","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180421","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-Kkny/jcMLwNNPcAc8y74ql0d5O88v5FHzQzN9EuFskYPqs3Ynl2TV1KJr5DGTXtCjKmo2ZKIuTdq5zmVWK8Q+Q==","shasum":"b937b164ce73f833f2ed5c36571e238898b264ce","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180421.tgz","fileCount":73,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180421_1524293414806_0.14531038962829057"}},"2.9.0-dev.20180422":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180422","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"eb112ab492c26c6346ea587646dd617093e72b78","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180422","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-ZoshrwzODq7xGMgxo5o1NimTC3+9W+eeSdgiDY6gd8KTtzm0roLk1LlVheUrqGWmpZO8rTdP3tCKsuBIPf7R4A==","shasum":"0957efbad5df6351a187a436d76fa4dc56ac1c3e","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180422.tgz","fileCount":73,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180422_1524379032514_0.7413558187978542"}},"2.9.0-dev.20180424":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180424","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"054a6ff354dcb25152babb7a6d230a687abce94c","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180424","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-4wIVBrmeKJyRz/6VDBKMbU9CuuhEcPK6g0IwNPBFnmrAb1zqPGMky/cY+GYdKNZ1vZZdfWedJjQY8dlDRD9MqQ==","shasum":"07fab78bd174a3904a1c3e9391e3bd0b02d41746","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180424.tgz","fileCount":73,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180424_1524551838330_0.5369347857267841"}},"2.9.0-dev.20180425":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180425","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"1f59e6f77a4df9196f83a7ece856cc6d9e0d5467","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180425","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-6t/l13ofVeTSJVD78b20E0rkoOcFPrst5bK9vCGDbbjzx+Ab3HoV7fSTuwB8zMEvpxHwQtR+0kR3XUy06HzwUg==","shasum":"059388a4e82cae7c850259d05625ae493a4c2817","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180425.tgz","fileCount":73,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180425_1524638737754_0.9350712193660844"}},"2.9.0-dev.20180426":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180426","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"76e7d91a2627353dd462dfa563448b731e82cea6","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180426","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-pOZL6v+xwvTMHS3yTMyo1bHyOjQ8EoA+gTDDYHkgit4zkxIVaJvx+0VvN5uRbvpP3h7LfSu9oOhCa1X+WmInHw==","shasum":"d6b8d31c6b874ccd66d4165fd0e692d2a9e0e972","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180426.tgz","fileCount":73,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180426_1524726430478_0.8418876740285621"}},"2.9.0-dev.20180427":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180427","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"bcb5599bf2a1f0db0592f3b680e303f8884ffad0","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180427","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-3PRIPuRUYzlyPXye+VyFBk6+d7+sDKuA1noGRr1BZcQiHfy2d7P9SmJVRM7PnmEYVRZi3ZB8VXn6bcYP8P3t9w==","shasum":"cc3f23532b3b9200e92ba45a9289e6b81cceafbd","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180427.tgz","fileCount":73,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180427_1524811638237_0.06050559668884237"}},"2.9.0-dev.20180428":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180428","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"443c1c7965b968bf7cdf6de1e91c1d29040092c5","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180428","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-3zuY7TefiIF8s/+ZLYHXUYCta4bLx4VmeR0Wao2WkdMoYEudMEJhpvqFKvXgJJBDk8UmtA9ijQlR1F4MgOvO7g==","shasum":"305d1bacd1db81126fb5d7aaad6f6b318d854ca5","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180428.tgz","fileCount":73,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180428_1524898313123_0.9452451964562463"}},"2.9.0-dev.20180429":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180429","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"732661c70bbb50102434186cef31fdf66386cb04","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180429","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-+itL/5p3HG+XOB7NmLxc5ec3wkFmOWGxBXkOulh6PndBGajB7DH8G5ii9riDqFRyxgIERXiUoT3GsQuftJ4g4w==","shasum":"6c94855f9223bad78feca7145f9fdb3ff2e11e07","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180429.tgz","fileCount":73,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180429_1524983824251_0.10242994753790957"}},"2.9.0-dev.20180430":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180430","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"33d20e93216d309a31797671922c2a57345da93b","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180430","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-KaYA4BpYsxHrnsZFs2DS/fhUkv9dTw72WMZBnCT2VFzn8R036PWjK8StbMaNHh4na9DEViGEEFg5bYBF3wDiIA==","shasum":"f69f2482654fedf4f74fca612b63c1298256d411","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180430.tgz","fileCount":73,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180430_1525070453031_0.5919275776029267"}},"2.9.0-dev.20180501":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180501","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"5ea4d3b2bb74a4f1e10714700dc6b91079600b6d","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180501","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-JG/KrrOqBsBdoyJccEXPEwUZcLhE9MhCaX4ahtPZkUgRXAVwW2vDwJpTEKy9lU4F5iu6q7iwgefaVuqgm0pFuQ==","shasum":"f476b65e5f7cc504e4f3928d05beba1298a70214","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180501.tgz","fileCount":74,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180501_1525157644303_0.9092716159450218"}},"2.9.0-dev.20180502":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180502","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"081322ba30b44e3f627aa23aa3b30975c43cc38c","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180502","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-I99c1baksJprs72kkFujvmER3tDLDm0l9ADbPPxOW06+Ohx7jOfoau/Gr/4efPkAXGoKccKfGCcyhaAgGPM9Ug==","shasum":"c0056291fe41778be5da3ecbdf035005bb7b85ea","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180502.tgz","fileCount":74,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180502_1525243774368_0.3855710931026963"}},"2.9.0-dev.20180503":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180503","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"254d284ec0781c9d69b51736a7b29bf62e6f865c","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180503","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-kSPEQCZYCFhmI57l9NRrs2saNPREnNRq6mQsLe2ArPAw4hGLVz3+XjKw9euHiJPWfo7J43OpsprkMXPto8pUNg==","shasum":"26feac2d2120c558fac25b5fe8108a85d0405c4b","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180503.tgz","fileCount":74,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180503_1525329985999_0.5362427884173984"}},"2.9.0-insiders.20180503":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-insiders.20180503","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","gitHead":"1cf1b92889033e56e20f7118c49e9ca3c8514d19","_id":"typescript@2.9.0-insiders.20180503","_npmVersion":"5.6.0","_nodeVersion":"9.4.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-9zt7QrKVs1QeDGir3MipNYadRltXzZDix+mHnWWt9QogjWPcrkWILFHkciAV5PPrVjclEh/a3G2jEmfIR2l2oA==","shasum":"dc5363403e7b384ad85b1a74a96412c36ea238a4","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-insiders.20180503.tgz","fileCount":83,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-insiders.20180503_1525376359340_0.9269234337434782"}},"2.9.0-dev.20180505":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180505","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"1fd1dff5e764fde1d425468576670fc002f534e4","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180505","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-vdQfHeDZ/H2KNfAPGApyEKjnp08+nmj/xy1ZPWHmfrrbfCOEAUDr9rAnmI4prvG2c1FD3TPDwkyR3iCURdTitA==","shasum":"f1202b14d14f97230afbcaf82db447a770f1fe9f","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180505.tgz","fileCount":83,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180505_1525503213171_0.2889804836546983"}},"2.9.0-dev.20180506":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180506","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"0f79b5b6f6ded887f08d0f8935e7d2ee9dfef363","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180506","_npmVersion":"5.5.1","_nodeVersion":"8.3.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-RiwOOSwBvPNtHR/LZpzbTuRhYC2AcCyQV4wgejKHeamLHA6kF3HI5bWwkrbuvhD5vA3HoJCuzFVC2hAz9ecy1Q==","shasum":"e20070caa88fca90227cf040459402611a74e13f","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180506.tgz","fileCount":83,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180506_1525590138012_0.12341186807852278"}},"2.9.0-dev.20180509":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180509","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"ec9c1556ad848298621d4af86f545ef39d445807","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180509","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-gI7oEGFIPMOC0K0K7M+LlOTq4+EYuH4Lsb50m1ZFoNouh3PPfgOVbOnGijBmdNkwVhDfxMTAoUPyWJ41wggwxQ==","shasum":"f2eb8c5bb6e37354fdea089b0fccaadc3fe66e0c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180509.tgz","fileCount":83,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180509_1525903337909_0.947034276177988"}},"2.9.0-dev.20180510":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180510","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"b5233d322d2cf74e65d6b33bdee3e439704a1c29","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180510","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-nKmOhDcdSQ4xAmxEb0s0cuWZPskk/Cfnt3U0AAVU/eOi6AkLeNkFl2/V7A9muss0b/A9oozaPMhratYkBLmtZw==","shasum":"9f039785ce560e221afa418107281eecfe295e0c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180510.tgz","fileCount":83,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180510_1525932684007_0.6054143768960119"}},"2.9.0-insiders.20180510":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-insiders.20180510","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"7271ec12404b8c24d43815838b6a459ab9b9cfab","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-insiders.20180510","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-upTIsxtLLe2FJ4x0K3c/lXItlGAL1mLOnjsdyL+ai8oKPSudTsujSXyeXDqpYTEN0joHEbZflpcntY53Ogc+eQ==","shasum":"2f9c37b904ddd8f8151e5eb25be11a3c4744b13f","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-insiders.20180510.tgz","fileCount":83,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-insiders.20180510_1525978584099_0.35855109921413764"}},"2.9.0-dev.20180511":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180511","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"5ca375c22ccd2589f2df1e167990825fda6315f5","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180511","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-MqdkCsW+5cLKdHLTPSSA1kEFYklh8v8PFWYBSdlPBYCU6SmMJ6RwUoBPwlb+EPSgeivRxESlqat3eTSxJvkxIg==","shasum":"e864f6b9bf9e7f654d26f5401e74b76871f5a8e2","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180511.tgz","fileCount":83,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180511_1526019070890_0.2837050254002733"}},"2.9.0-dev.20180512":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180512","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"d990f294f8703b4d3346b34b7d984cd9f91c2868","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180512","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-IoShsqB7aix2NsKnaKqlCuerZdWp0OHIrWufUY2mfV1vDf8FTmBA49AODKbWySTQCi2YBB6SGqih9FLMEBjZJA==","shasum":"fa4bf0c8cb42ab810d772def0b9244267bd5d80c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180512.tgz","fileCount":83,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180512_1526105457412_0.9875103703947403"}},"2.9.0-dev.20180515":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180515","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"ba4bf21eade396ac0d82ab1278dfddc6ce69c653","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180515","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-tkBul+7ibjTC/gKjz/ggyREb3km0MhbgthAtSEmVjUWP8WGgCWyLnGqzlHpgZN8teu6e69ox+0kLYNnJQ6gzlQ==","shasum":"12cbe6b3d61f6367b6b6b77a0b33f5234b248cb6","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180515.tgz","fileCount":83,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180515_1526364658990_0.1857079249715654"}},"2.9.0-dev.20180516":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180516","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"b4ca23d8f9133036e2bb19e848960cfd8dd8bd31","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180516","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-H2GdFFdcjShV45iYGGkpTOIKVRrjS5agbRimCSkd7GEmMidLxdoot164zTb4qVvYuWAPEXqqAFdY8sVaZhOLGA==","shasum":"8ef56c66b3cfe04e894970323e0905c29f8c0d89","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180516.tgz","fileCount":83,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180516_1526451049876_0.14551511656807414"}},"2.9.0-rc":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-rc","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"2b0add9ff9f9a9a4d5a4056aecdfe50140aa930c","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-rc","_npmVersion":"5.6.0","_nodeVersion":"9.4.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-4dZ8bFgwR7DfIf8AHOETFGCFTHXXgwtfD33sGINcpa6/95E68pByTTssms9VXO0RDDGa8Jp9MreDv/G94OWg4w==","shasum":"c0fe5d7f2445d664538d21494274814cdfad468d","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-rc.tgz","fileCount":83,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-rc_1526502776961_0.2974395072342515"}},"2.9.1-insiders.20180516":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.1-insiders.20180516","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"37d2b2b70844bdf8eb3fa597ee4809e7acd31740","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.1-insiders.20180516","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-YFgr70hyhzGTQlDLLzRwblITJKb7X0LbWgZ5Xb8dSoZKxtP5Oj4lLih+eRvUxDHSnIfe4IfA4gUZkbsp9Dc0Ng==","shasum":"aab5261edb2c162c2d0c1754bb3092d4ff6efed0","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.1-insiders.20180516.tgz","fileCount":83,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.1-insiders.20180516_1526512595327_0.6445182984780997"}},"2.9.0-dev.20180518":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180518","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"8c2ed976a5a476fa5007529b20b21b2690805f94","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180518","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-FWW+p6V3heeUJPQk77p2jnBpjZKgjm2DBotA+oVFCpPwrLVoV6sYxlq+73jFpbR56vPdRa+eaMHxxFZXVNuJLg==","shasum":"7c709cb5d59e60a5e346cc5856277fd7b8ced68c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180518.tgz","fileCount":83,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180518_1526623871848_0.32862635005474683"}},"2.9.0-dev.20180519":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.0-dev.20180519","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"6103f9f64457f2c6394210d222375102a89ba01e","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.0-dev.20180519","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-WQKPDm2m+LlNYCpwsi0AClQW+S4JxcEzYIoBVw+259yL3JPDRok5a9J+3jKh+2u54KVdoKTSVNJdp2WxvMtZAA==","shasum":"ba158b88bdd4e3d38552e18022f5a05c8d3995f8","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.0-dev.20180519.tgz","fileCount":83,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.0-dev.20180519_1526710191611_0.2310521636405669"}},"2.9.1-insiders.20180521":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.1-insiders.20180521","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"8995126563f1bcb441526b4f8490bc791d7a4b5a","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.1-insiders.20180521","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-2G7xKUZjn5WVx2cUNas2TdSpZN0foJMnYo8c1r18cfKe9zD0yu8ZvHQOhdqOSCfkorbsDsYejBKVX3va/UmUrA==","shasum":"37e9c05f00aa99864c3f66781e607ae0097c2b0a","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.1-insiders.20180521.tgz","fileCount":72,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.1-insiders.20180521_1526945278227_0.5333623198624629"}},"3.0.0-dev.20180522":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180522","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"a9e89ce3f1127a92b3a60057a655862844a76f70","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180522","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-/8nx63FE39r823Z07e9UnTQ2/L50iu4EWaonNxU7zY1BPHjl7ezWK1tAP7pAJpGbxdCAt+j0Xt88/MqdTM57rg==","shasum":"9c9fc115ec0c5e727d7f291325b64fd5c891c3a5","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180522.tgz","fileCount":73,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180522_1526969532713_0.9753501860387337"}},"2.9.1-insiders.20180523":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.1-insiders.20180523","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"4144f45725640d603a2eb310efc61c77d0777ca0","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.1-insiders.20180523","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-e5ZJVtF111MZy+76amIxpz64GidfW7s5SrTRXd1x1dUax5XiKYHPSxFCMswawpvQrplvhBb++Fmn5QRd+SThKQ==","shasum":"ea74ee12a800148a87d48a8fce526bdc643cabf9","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.1-insiders.20180523.tgz","fileCount":72,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.1-insiders.20180523_1527119771187_0.2746842855157403"}},"2.9.1-insiders.20180525":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.1-insiders.20180525","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"30415cd4f45f0fb035d9e0b25d1b5d9bf6047a02","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@2.9.1-insiders.20180525","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-6f+/9JF7clvPB43hmpdkAY5pbmPP68B5SUtJ1nd4ss15H2BdouF7tHvQYZD2+3EC2syWRo35eEaToVCNckwugA==","shasum":"f28e73af2b9f2411c872a1a79a7a84ee54e5f7d8","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.1-insiders.20180525.tgz","fileCount":72,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.1-insiders.20180525_1527212243865_0.5300665196855372"}},"3.0.0-dev.20180526":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180526","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"927343cf3a34cb14b03a06a8e2a2295c8bf18c5f","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180526","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-xwPtyCVyUqg+OzRiNkg+w6YrJD7vJuXTlk0E1bJTHJVF8PaYqInmHmEJEflQnnPyRRrvtA+BXwF5KKicLtlvPQ==","shasum":"98e2ad71ce10db18a6b2e0d350e0f739e5ae896e","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180526.tgz","fileCount":73,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180526_1527315067240_0.2327914426673281"}},"3.0.0-dev.20180530":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180530","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"364fce393d6f53aab08f088c022faebd669b0097","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180530","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-N0EmFD2sNkPCvjIHheTiwVL/ZSP7s3ZF1mRnSbMkfBN5b+yyIYhed7K1vnEQCByO5ZmhVZg81xidcBwhuCXu/g==","shasum":"f85c80e74b6271375cd2d91e4a735b852f05cfd0","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180530.tgz","fileCount":73,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180530_1527660724748_0.5382579471352196"}},"2.8.4":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.8.4","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":">=4.2.0"},"devDependencies":{"@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/through2":"latest","@types/xml2js":"^0.4.0","xml2js":"^0.4.19","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","ts-node":"latest","tslint":"latest","vinyl":"latest","chalk":"latest","typescript":"next"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"c59ea304bc49d93385c22be7b8d2b401891ebc04","_id":"typescript@2.8.4","_npmVersion":"5.6.0","_nodeVersion":"9.4.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-IIU5cN1mR5J3z9jjdESJbnxikTrEz3lzAw/D0Tf45jHpBp55nY31UkUvmVHoffCfKHTqJs3fCLPDxknQTTFegQ==","shasum":"0b1db68e6bdfb0b767fa2ab642136a35b059b199","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.8.4.tgz","fileCount":71,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.8.4_1527710633913_0.29202417413702975"}},"3.0.0-dev.20180531":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180531","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"576a7333787133b08ab1af72c2409ef869b2ab1e","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180531","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-KOb6ecZRRWEGRQldW5z99TbIqxVujDxwHTWqzssrGPJLh0rNvORPaGVyLxlijZXbWfADYyurns0Ezmoe1ge5hg==","shasum":"91b8bc5485d60d10e668c2a338a63d1c3db33c97","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180531.tgz","fileCount":73,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180531_1527747131753_0.9877779865626117"}},"2.9.1":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.1","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"4ce4f58243fcb933f2845ccad7497bd0e92ced09","_id":"typescript@2.9.1","_npmVersion":"5.6.0","_nodeVersion":"9.4.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-h6pM2f/GDchCFlldnriOhs1QHuwbnmj6/v7499eMHqPeW4V2G0elua2eIc2nu8v2NdHV0Gm+tzX83Hr6nUFjQA==","shasum":"fdb19d2c67a15d11995fd15640e373e09ab09961","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.1.tgz","fileCount":72,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.1_1527783265489_0.6496125572816736"}},"3.0.0-dev.20180601":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180601","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"9d42ab983d12780eb2a2e8e90dc63e532a36b462","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180601","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-GIpPvsYSnVLcplzQp5cGyij/Xz7NdB0kPNWW6beRJUn9x0m3Wea3fl4RyGLdz3K1OyfQJhPdWSdQKZWkmmx0XA==","shasum":"e0d3b9a3c0378335dc69710b8b6218f8ccd43663","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180601.tgz","fileCount":74,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180601_1527833522562_0.862370052465294"}},"3.0.0-dev.20180602":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180602","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"ed728f186b9bb725cc10f89956cfc52280aa053c","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180602","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-lQNa0+qiovpbnodUsTfywrUcFmYQAmMbJ2Q7Z73RXOxO2h2bNN36+Vy34DYibTcqZnpY5fDAcAFs+4h+BX0adg==","shasum":"ca368c199b4e3cbfd25b82ecece3f2b13349c893","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180602.tgz","fileCount":74,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180602_1527919901587_0.16458716178403243"}},"3.0.0-dev.20180605":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180605","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"7a5dec4d7b64743e5acc6d41c44d9907fe91250a","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180605","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-rvIKJcWvrMCWkTrTHvGZL/V2Vfo57MPj8ohYDQcEV3pF0U6fS2DmFePMK19yLheN/FJayr6SvNyJ4DSS5axxmw==","shasum":"8ad9bd2421242c09624fab8a8390eb06cb7baef8","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180605.tgz","fileCount":75,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180605_1528179151905_0.1641030041074656"}},"3.0.0-dev.20180606":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180606","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"8d737ca9593dffb7243acbe1a1eea0464113b54e","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180606","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-1bOyVDw7f36jEWKuIarg7ryDs/QH483qJ6bP0WI8T5U9F0vnFfjnvfSx0fhM1iSoodfWrsaidmKVNyg/U1/5KA==","shasum":"8fa79b16903f8383ad2cf5559c47dc468971fa0e","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180606.tgz","fileCount":75,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180606_1528265519952_0.72555219855305"}},"3.0.0-dev.20180607":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180607","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"8b77b13166df82f32d1edbc121ba42c46006a3a0","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180607","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-ww0dJQOBrksEgU++TzfFSBslO92FQURL7NCzQyB40+5BmNQ8k1hBP47HzzqO1RyRzWcJ2OmRZBZBQDRgMxVGVg==","shasum":"b48c4ad8a0b1da23f1b0863a6a827fa8fc1e9b26","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180607.tgz","fileCount":75,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180607_1528351859756_0.16369564737000197"}},"3.0.0-dev.20180608":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180608","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"17eaf50b73c1355d2fd15bdc3912aa64a73483dd","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180608","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-v6q6Da6a33LzL4a1iXpkEZ5WAwA0TEkrVhh689dUCbUg3l5CLO3xajPMIz3hzgaIMLyX6EpJwDJjLRbsMHzdjg==","shasum":"0143145fd9dc2fc3e0cd166e69faf69f3f2d3354","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180608.tgz","fileCount":75,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180608_1528438358354_0.8853656866059125"}},"3.0.0-dev.20180609":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180609","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"04187bde8de24f1913099ce04cf22dbb8d20e59c","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Gulp tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g gulp\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\ngulp local            # Build the compiler into built/local \r\ngulp clean            # Delete the built compiler \r\ngulp LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\ngulp tests            # Build the test infrastructure using the built compiler. \r\ngulp runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\ngulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\ngulp baseline-accept  # This replaces the baseline test results with the results obtained from gulp runtests.\r\ngulp lint             # Runs tslint on the TypeScript source.\r\ngulp help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180609","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-bqO5mSGbxZoiY/9Y1bnnU36dC5CfnrA9I9WKf3QB0qMuJakoofO2DNTDRwsypyhCThlNtF2Ls/OMj3Txglu4Xg==","shasum":"e25f3377eef4bec04207168c9b57d9e94557b4e2","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180609.tgz","fileCount":75,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180609_1528524722734_0.1987921135675328"}},"2.9.2":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"2.9.2","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"da1d3cce6fbf109fd322210901d6bf504fdcf42f","_id":"typescript@2.9.2","_npmVersion":"5.6.0","_nodeVersion":"9.4.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-Gr4p6nFNaoufRIY4NMdpQRNmgxVIGMs4Fcu/ujdYk3nAZqk7supzBE9idmvfZIlH/Cuj//dvi+019qEue9lV0w==","shasum":"1cbf61d05d6b96269244eb6a3bce4bd914e0f00c","tarball":"https://registry.npmjs.org/typescript/-/typescript-2.9.2.tgz","fileCount":72,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_2.9.2_1528914942120_0.7475624472595328"}},"3.0.0-dev.20180615":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180615","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"f597589e54f1aa1160c7738b6987ea510af65de1","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180615","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-mMCQoQ1WgqjynnZNZ2U/bvqP89LSuhces7fv4IBWsykoTxsr+NU1l6rNK0a6AE39jEqit8ufsZqUD189bNiP0A==","shasum":"649492d11ee6c1b3b3ee6d89e91282d0224efa07","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180615.tgz","fileCount":75,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180615_1529102548139_0.5758591081438871"}},"3.0.0-dev.20180616":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180616","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"3846e7b06eed371ab1d3d8d9919e2e51c62b8bff","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180616","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-g4rjc9/p4iCRgnHTMSqXO4hpPTDCuqYaz1b//UX9QG+HXQv1CwD0SM5OvcDqtLFPK2RG5xUxhwPzhLXt6Wv75A==","shasum":"1d1a3af3adfc85e620ce599ebfa022858bf2047e","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180616.tgz","fileCount":75,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180616_1529129555810_0.4972173639209545"}},"3.0.0-dev.20180619":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180619","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"4fafe0b50226e27a517817e2631e22871e232c37","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180619","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-kSxEtsbDkVRQ1nFQKteiAQnwO+KS65dcdqmH3NsdVZ5LwPb0l5cbnicZHKlPpqX2LsQxQ9qnqYXSQDI66VGQGw==","shasum":"d0a9d25dd47763ca9611d7d41de3fedea62efb04","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180619.tgz","fileCount":75,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180619_1529388733937_0.9861995065120195"}},"3.0.0-dev.20180620":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180620","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"f3e2e891da9a50cafd1f10b64872c7d919c223ee","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180620","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-SVD+Xo3eN5vlOJltvcrMG8Oy08lKbgSlTUaCdJ2cdb4Tp0Pq++yL0CIxBw3j/Mmul/O4qle8YmDcgkGR48AzMQ==","shasum":"a485c7a9257823b0f1ce62e843f41f61642bcf8e","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180620.tgz","fileCount":76,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180620_1529534070273_0.72408591566015"}},"3.0.0-dev.20180621":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180621","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-newer":"latest","@types/gulp-sourcemaps":"latest","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"gitHead":"0f55566cf48bdc5f817f0b888c6b485e42eff870","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180621","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-uexojVffHYeV7Mb2CFbbUxjN0f7Jz9biKIXGXU4H2sLnG9YChZCt9pCXkTt25TzdStwEn9jk3YAdIE7ixNllDg==","shasum":"a910b3cff52a3352a1a3fdbf748e160704eb6b82","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180621.tgz","fileCount":76,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180621_1529561556068_0.2564190758001281"}},"3.0.0-dev.20180622":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180622","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"cfe65d183ddfccce0748c5aed7088c2b0600840c","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180622","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-S1eswgx+659zyhcBeQbe6S2yPmf73/Fp0xV72AsK7pGH9q/VRXPpVqATL3tQRWws7xxUrL4K2UrmpSvVwVePRw==","shasum":"16cb2d9cd90cda892810439f75b0b92762b8e745","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180622.tgz","fileCount":79,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180622_1529648078011_0.6021180143867768"}},"3.0.0-dev.20180623":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180623","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","sorcery":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"22d33d229259cab9f589fcfff19060ba1cdac936","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180623","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-By1zWKpF8QgS78C+R1M4Lr070thxU6baA19UNPtuNILfkIhv3AVkCYMSxChJWmbvXEhsHOV7LVOHa1dlerf05A==","shasum":"2121f0c77a8737bdd9f028eb84ac328c35274fbb","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180623.tgz","fileCount":79,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180623_1529734339006_0.9698477502109792"}},"3.0.0-dev.20180626":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180626","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"70975cd08f48497f3ae6538ff69bf50cac23706b","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180626","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-OQH9osIC4CdsVzVvsb2RenRTVPRKwSIMIpRy2J42XNOEUP+vhX56BX1Z47K3l//LEGY0xG7zF7qVKCDlUhhrlg==","shasum":"fb6be91cfc8e8757d551e83af208d0083be61499","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180626.tgz","fileCount":79,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180626_1529993624841_0.20680919477452075"}},"3.0.0-dev.20180628":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180628","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","gitHead":"16f045b7f502d0b4d7ef82d001ebe1c092feed21","_id":"typescript@3.0.0-dev.20180628","_npmVersion":"5.6.0","_nodeVersion":"9.4.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-BVzzZyFSo21+/qnBdFrqvknaxQoOVir6IPVSJ4r+23sgcw7ePSEki7ReKNn99C/iknqpxSbXnezAk3I2BYEaZw==","shasum":"9f70006d4e04daa5bb7a8b9db96e3728683330a6","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180628.tgz","fileCount":76,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180628_1530145119821_0.3673472166349685"}},"3.0.0-dev.20180629":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180629","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"f23c180a3888548a9dd75c8a4d8cb2d0945b0ea0","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180629","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-3VwPgl4zfs4cIFxOOWGFWo2CVItayz3hhET2P8feKvp/sYpoSmkkziOpLqkUaBjWhB73WbXDa0DN/VtLa6pQ+A==","shasum":"91e7bcfa89aa1ba8a10417fcda618a50c921f154","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180629.tgz","fileCount":79,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180629_1530252729152_0.4233332604222677"}},"3.0.0-dev.20180630":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180630","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"a1746d4cfe357ce8f38619e46578f817dfc03f9c","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180630","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-Cuc8Pf6c8a1YMbwzv+0UuUPapAxgKeHy2yyFvPQlBnRITAXI88/V+5qkPuNLzKGTJTbmGtu8VP+iEKq3tSbxOw==","shasum":"467d6c31b3e2b1d9a63401b56283700a4771097d","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180630.tgz","fileCount":80,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180630_1530339239752_0.05967138216912349"}},"3.0.0-dev.20180703":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180703","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"efc1b7df082e8c2b074c84468fc5b8a30d82d738","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180703","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-JkaEKt6pwu90wwhpULzt8z/ojXakGAVwbWSVZjrcPmLaQ6ytDZrWoBofvQpFPDQSwptE6LRf+lJNfT9JZ0rFJg==","shasum":"9e7c2bd60ef764721223abf8237026b921733a35","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180703.tgz","fileCount":80,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180703_1530598430652_0.4852877721415103"}},"3.0.0-dev.20180704":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180704","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"84f5aa540e650f2e291eeb3600deabec6882f507","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180704","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-5/P4rA2BNnuFn0o9o+WBsvrbZ+3BXV9HNUjETW4BlkxuYn1azIgqQ7NJwyOpns1DLu8xkAfJarc9rT4ECgWb2w==","shasum":"929405d2ff0318550bb346cc818cc0d2eb215577","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180704.tgz","fileCount":80,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180704_1530684884802_0.37592764856359384"}},"3.0.0-dev.20180705":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180705","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"1579bfdd467832505122bfc94508c5a6ae43bb22","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180705","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-B6wOJcHWth4NL6EuP+Gefzd11BeLGSNh/sjHIPPYsBqtRvgJDzufIFr6QLzO2IDVZ4D7qLwg6YzvHGDHPg5tgQ==","shasum":"6b75721aeb4edd5906002d319088e1727d0fe929","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180705.tgz","fileCount":80,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180705_1530771348464_0.6215778525465914"}},"3.0.0-dev.20180706":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180706","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"7a082d45f8546cf737f946823ba2e235e420f8a9","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180706","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-FDGcMfvqDr4xoYhyspX/0SshPQCHFYbegQtggwxJLAWHtMjmutN+DrdNqEGwpX5nGKP96Ek34SN7HDRJegqZzw==","shasum":"7db1e22669389a6f16a644b9ffc1c6d65ed5bb80","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180706.tgz","fileCount":80,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180706_1530857547590_0.7742931745242041"}},"3.0.0-insiders.20180706":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-insiders.20180706","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"7e1711dfb6759b6773abe2bcf6e956aac5399523","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-insiders.20180706","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-W71YcK12VB5Bg2dMaJNygG9lOMNZxAk1JFcU0FXfMO+3CxmQxR8Ck8do9+epB2P6sBgbcRU7GAj4RxRIy7R+Qw==","shasum":"684c6c8ca1eefb11e79b6c072a92046ffd75184e","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-insiders.20180706.tgz","fileCount":80,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-insiders.20180706_1530913429824_0.6074312552736998"}},"3.0.0-dev.20180707":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180707","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"10b174abc16228a921b339f0d5a413e3b8e46b30","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180707","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-AP1tZuUy4CW716f/m2F8LK6U25x/FV1+96hTnruCHiuFFIUx8XbFH8h/0azebb7xNvxGollTraW8VQxD29VFCA==","shasum":"1520047c865f8e7d12ae755ba67f78e0d5f8aa43","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180707.tgz","fileCount":80,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180707_1530943933767_0.04708104983104722"}},"3.0.0-dev.20180710":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180710","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"b3b6c3bdbcf6496931d5a5c272ea80bf33fc86eb","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180710","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-fessARCIEs76sEgyq0Cs9fKVdcbX0H+k7dsjm7yiXr7WXBuGyv9z86Bfc4qagvADhL9TYLOdN/OFvRy4816/qg==","shasum":"19a5ad2191ddc1f4d5cb29c2f20d37bb98613848","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180710.tgz","fileCount":80,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180710_1531203154121_0.4307940253412381"}},"3.0.0-dev.20180711":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180711","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"8a559e4630fccc7ff3f7c716e37b1c5cbb9acb17","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180711","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-0yDMWKFPzDGfnGw2aUyyFmaHdMWuQivShEeCNzncZYFV81pMnBmfct/nY9TcSYBo4fsNm9QQKAo7n+4Qsd1tsw==","shasum":"aa3d44fd3e3514779d0dd92f47be297ba1f327df","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180711.tgz","fileCount":80,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180711_1531289584699_0.3756331775588988"}},"3.0.0-dev.20180712":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-dev.20180712","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"66e9aaac18de0a608f1f375cf30e449cfd4a503b","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-dev.20180712","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-/GUbjTjrETF82RpLdOE99DyPMEH3DrlaElXCwzB7515FNgvho6sMYUDlvEM/q0U5+gESDHpNuc+cm9JiCW7n0w==","shasum":"ffdadf6a5a108c44d5325e83e2afbd088f2a5f84","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-dev.20180712.tgz","fileCount":80,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-dev.20180712_1531376004258_0.6700264086169205"}},"3.0.0-rc":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.0-rc","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"b71355d5b5c85de7431869a9b327cce86a62947e","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.0-rc","_npmVersion":"6.1.0","_nodeVersion":"10.4.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-//6ivFupDRi+rtsivXnYNfXK7URxdvO18hhxgNpbiIVBE611+1NCiiEfgjjx53TU7fjxlhWPuv3RRj5hJF62/w==","shasum":"13553808426d393d3f92c054f4fa6f24589549c1","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.0-rc.tgz","fileCount":76,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.0-rc_1531414603121_0.7167222902484227"}},"3.0.1-insiders.20180713":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.1-insiders.20180713","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","gitHead":"07174788a9f162421220e8efd7b6179f4978d5da","_id":"typescript@3.0.1-insiders.20180713","_npmVersion":"6.1.0","_nodeVersion":"10.4.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-EKCHxip2fvCSOUkwo/JqK48kM7LZZz8Ip77gdvAPAChqydGL7Oo0w+/NiReycf6T5EzvI4m6mAtiWrYSgVQyZg==","shasum":"02775b5197ab02b79ed5b84e7483c18ed164e55e","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.1-insiders.20180713.tgz","fileCount":76,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.1-insiders.20180713_1531500764976_0.2020600021139598"}},"3.1.0-dev.20180717":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.1.0-dev.20180717","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","gitHead":"204ce175ddeff414455b34e9718532edfba8358b","_id":"typescript@3.1.0-dev.20180717","_npmVersion":"6.1.0","_nodeVersion":"10.5.0","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-ALnZUGSBVvIsKmiEl0fx1DeZruoXNTa1tkyEKsc+FYJFKQdxf9IMGuZHtSvDX5fWpxx/MoWg3rGItjyNxDqJ8w==","shasum":"a623e4df35ee102641020b1fe9dd5258547be74a","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.1.0-dev.20180717.tgz","fileCount":82,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.1.0-dev.20180717_1531840930432_0.07752961699297378"}},"3.1.0-dev.20180721":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.1.0-dev.20180721","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"93722c89426425972d08aa2220311ed411a4d9eb","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.1.0-dev.20180721","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-q0nLSs1tOBM4gfTWyiwot73kDs502xZ5HYwYoZLmkjRTXIA+pWr3Z2csfOp8s3lG90kvSt/gxxhriEJgIscnHQ==","shasum":"690467dccdf00c2910611ce3eb8efcffd5f43dbd","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.1.0-dev.20180721.tgz","fileCount":80,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.1.0-dev.20180721_1532153609047_0.796856442954498"}},"3.0.1-insiders.20180723":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.1-insiders.20180723","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"8817d9e5bc4c0fee3d4215e8c7887083b429e5d1","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.1-insiders.20180723","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-eYsBBCHtpfokYFJm5pViWU/j/o0w6gnG6b9Sk+s8KIBVIInlXydPmjNfFwQtQ0xeGwGkRMWbQHBAgrJDO4qyKw==","shasum":"266fbafb349a6429777ab3525cda3bb0a2adc661","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.1-insiders.20180723.tgz","fileCount":80,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.1-insiders.20180723_1532390230143_0.7839168487521915"}},"3.1.0-dev.20180724":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.1.0-dev.20180724","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"30c41492d93c2fff0752f0f256464db2d89d652c","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.1.0-dev.20180724","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-yqRakCWNbgmkw5MGUWgmuPD5CNlCNVE4BkT4bjQsUEdXYmwcYSR27NhVMXBqJVIS7UPSzABZ/Yda+umMQ3B8MA==","shasum":"fd55116ea638b85b93058954d011cfe22a8bfbe3","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.1.0-dev.20180724.tgz","fileCount":80,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.1.0-dev.20180724_1532412795599_0.7689687116907007"}},"3.1.0-dev.20180725":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.1.0-dev.20180725","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"e4d4b0ae4bdc1c9ee38f243fe7d287eb355bebbb","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.1.0-dev.20180725","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-X7gCA2Jnvn5o2LnjGwZXubnL2JUx9IEhAR4bH7ut5YjQIvYLsmcy6Z4VTbKdpuM97FxZp+qphoWxY174P2r2EQ==","shasum":"3165d22ba9ebcfbeddd1cdbe0fe83bd5c1c030f8","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.1.0-dev.20180725.tgz","fileCount":78,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.1.0-dev.20180725_1532499189629_0.44151734952393173"}},"3.1.0-dev.20180726":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.1.0-dev.20180726","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"2b14bcbb56e8dc2cb4d859a485ef0b362331cdba","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.1.0-dev.20180726","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-Ty04VdHbH8HIDJJDeiPRZEbiGUsdblxzKLOf5YOquuXkaDwf9sKomhWXmIwaxz47AwbGv1fkLBGHTRmxZZ+lag==","shasum":"e163396a209de57b2d86f8ce3680602e8e5c59e4","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.1.0-dev.20180726.tgz","fileCount":78,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.1.0-dev.20180726_1532585569146_0.948161028025378"}},"3.0.1-insiders.20180726":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.1-insiders.20180726","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"dedf5d413b9bcfe69564e59dd3e1f96ee9280c63","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.0.1-insiders.20180726","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-fSY7XOiD1xObVp+vCamB9Hivvvu/SlUu/tzoPz+7xZGk2pqVTRFG7+1a2okxIBVV+C1ePXOR163PIjB3+L4SPA==","shasum":"3f921f23c8768b6fb665ee8a6895b5fca14b0c5f","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.1-insiders.20180726.tgz","fileCount":78,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.1-insiders.20180726_1532629251215_0.24044530135241393"}},"3.1.0-dev.20180727":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.1.0-dev.20180727","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"3bfe91cdd87df86dc96fc45c008bf4458d3563b8","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.1.0-dev.20180727","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-5i3dg8ysZ6XSF95T2ZCgAHm0EXpl2d/0Cw/yhFMVaBYvUjDWqlwpWHIZe4pjxNLvhHxq6Wzj+kKb+zY9fXYRSw==","shasum":"dec7ac54fb393b55c3c5b8f53499bb11183cfb0e","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.1.0-dev.20180727.tgz","fileCount":78,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.1.0-dev.20180727_1532671942757_0.16802560918605547"}},"3.1.0-dev.20180728":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.1.0-dev.20180728","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"5e1872f0c0640ec48bb7855f200dbf8e9fea3fb0","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.1.0-dev.20180728","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-BXxwXB5+xa47C70I+P1o+yVriR3kz0MFr6q9UsxnndnuKZh5HrNKr+JcW3BzgK+pHZMS7CcnuCIcEGfL0hPW0g==","shasum":"013a376f1bd17243de42bb5bd16e7a98e0e25feb","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.1.0-dev.20180728.tgz","fileCount":78,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.1.0-dev.20180728_1532758334640_0.9859488457499721"}},"3.0.1":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.0.1","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"dedf5d413b9bcfe69564e59dd3e1f96ee9280c63","_id":"typescript@3.0.1","_npmVersion":"6.1.0","_nodeVersion":"10.4.1","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-zQIMOmC+372pC/CCVLqnQ0zSBiY7HHodU7mpQdjiZddek4GMj31I3dUJ7gAs9o65X7mnRma6OokOkc6f9jjfBg==","shasum":"43738f29585d3a87575520a4b93ab6026ef11fdb","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.0.1.tgz","fileCount":75,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.0.1_1532967672359_0.4248735105370005"}},"3.1.0-dev.20180731":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.1.0-dev.20180731","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"e2a8f996d03e984cf9ed9473dede8dd13de49ff1","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.1.0-dev.20180731","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-mqKq/RGYXlj/619ihl8ay/60HQMd9DkraBHcPz+LP0Nu6TuHjvpA6aAs+AURuEnyyf7evB/6yEEWtCSKvKBO0g==","shasum":"c613a2c85cd3fadd50e2bc5e9179fa496d79a4a3","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.1.0-dev.20180731.tgz","fileCount":78,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.1.0-dev.20180731_1533017570235_0.8622199884640531"}},"3.1.0-dev.20180801":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.1.0-dev.20180801","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"9c9f3e3cf9991502c546640a78365ab8e1ea6b52","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.1.0-dev.20180801","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-IhvPNhjjGf7evWeq4wMMrpvq3prp3zN0kYRdwAap6avah1n5LO8iDk6KAzxO6g1jl0M15MdmOyBKkJzRlECSug==","shasum":"e6fa5c284afb10445f0c4ca0a1c0c16329fea351","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.1.0-dev.20180801.tgz","fileCount":78,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.1.0-dev.20180801_1533104014976_0.7065104749700466"}},"3.1.0-dev.20180802":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.1.0-dev.20180802","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"3ab7a98ecf048da3c3caaf23462ef77d3be71424","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.1.0-dev.20180802","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-eWmwrkRZO46kZQIGtxuoU2Mg8WldQ49aXeTv+HLqghlHTBjCe1h8wu9hunGPeTwgcWs0ouLY4Ny9jN3RImflmg==","shasum":"c4f61dca4d410330a374675af777eff9b93bddaf","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.1.0-dev.20180802.tgz","fileCount":78,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.1.0-dev.20180802_1533190409928_0.6953193730945657"}},"3.1.0-dev.20180803":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.1.0-dev.20180803","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"9df88316a2f26a83dd5635e149038f0c10168e63","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.1.0-dev.20180803","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-AOdQHrAA9yLrn3AFVaTIT/JW6eIraQn0DkwcI6QRnto3oViVzd8nypDEacb7rHJ2GIds4aVe+LbsS8gRqvmRMQ==","shasum":"bef1cf4124e9600e8e8a024d201fd9d7bcb83ff9","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.1.0-dev.20180803.tgz","fileCount":78,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.1.0-dev.20180803_1533276792210_0.26530785582332417"}},"3.1.0-dev.20180804":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.1.0-dev.20180804","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"3ef067f7d9a042336903b33bc6404cf61390fd55","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types to JavaScript that support tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.1.0-dev.20180804","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-4R45oI/Jj/MDGlqFxzZTFgyASsBpEGOOQKsedPZQq9PfsIPFGA2WuSlU6riv5j/t8sDYsZhZjhw3BfP3ZOJD5g==","shasum":"266909032a9cafb008243f417d5a5f81630f6b58","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.1.0-dev.20180804.tgz","fileCount":78,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.1.0-dev.20180804_1533363219183_0.6920978263812794"}},"3.1.0-dev.20180807":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.1.0-dev.20180807","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"937afab4b026c9ed527c8369275c749fc8f2af99","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types to JavaScript that support tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.1.0-dev.20180807","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-sGnPUxU+vm/XOmlJ3g9CRldFKXB9YKk1+sbEq3JVNULpwHGpDZ5lZw9/M63c6sCdW90wvP2HghnsBD26V99ASA==","shasum":"17774f3b12c7d81e323dd8274f389e135eddddbc","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.1.0-dev.20180807.tgz","fileCount":78,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.1.0-dev.20180807_1533622414580_0.37304458255777595"}},"3.1.0-dev.20180808":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.1.0-dev.20180808","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"1a05f13aefd2b59da94cb1b1b5da2a5d1bd04411","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types to JavaScript that support tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.1.0-dev.20180808","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-APEkHAai4/btrmvU5Fd4fwyXQiXcFwFxz9AoZPsZcLxBGJvfkLw7Vz1tg7fCKrutPXldkv31MJnpq8MWQSr8hA==","shasum":"c74081db8c79788df9be4d99277571f9c11d49d1","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.1.0-dev.20180808.tgz","fileCount":78,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.1.0-dev.20180808_1533708805007_0.277762357469612"}},"3.1.0-dev.20180809":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.1.0-dev.20180809","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"a36a53bfdb5592b018ad87c7b4b32b9382787a06","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types to JavaScript that support tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.1.0-dev.20180809","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-reuzRgpPMU5zUMpC0d7kEp4OPg9ZR8nwMiSbkSbYyt01eKlH1Q5WTS1azCw4+ASxXhILYM1fbcvTI7uohWspxw==","shasum":"3384f7d4fbdee02a305408cee28e93bd75b49a0a","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.1.0-dev.20180809.tgz","fileCount":78,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.1.0-dev.20180809_1533795208399_0.14558993254008046"}},"3.1.0-dev.20180810":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.1.0-dev.20180810","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"a73161e9d5a6c914d6c49cf6a7b76550a307f13d","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types to JavaScript that support tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.1.0-dev.20180810","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-VFy+GNeSR0UGU2foHHSCt6cLZmkc4VPGIjQJlcRXhUp/HlyKNg5IWMsZ1uLQG/uGdw+VaHUcU12w88GFj5iRVQ==","shasum":"4e3c194fd3c1e87dd7c91f9ad63494fa835952c7","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.1.0-dev.20180810.tgz","fileCount":78,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.1.0-dev.20180810_1533881594156_0.8805682847869529"}},"3.1.0-dev.20180813":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"http://typescriptlang.org/","version":"3.1.0-dev.20180813","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":">=4.2.0"},"devDependencies":{"@octokit/rest":"latest","@types/browserify":"latest","@types/chai":"latest","@types/convert-source-map":"latest","@types/del":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/gulp-concat":"latest","@types/gulp-help":"latest","@types/gulp-if":"0.0.33","@types/gulp-newer":"latest","@types/gulp-rename":"0.0.33","@types/gulp-sourcemaps":"0.0.32","@types/jake":"latest","@types/merge2":"latest","@types/minimatch":"latest","@types/minimist":"latest","@types/mkdirp":"latest","@types/mocha":"latest","@types/node":"8.5.5","@types/q":"latest","@types/run-sequence":"latest","@types/source-map-support":"latest","@types/through2":"latest","@types/travis-fold":"latest","@types/xml2js":"^0.4.0","browser-resolve":"^1.11.2","browserify":"latest","chai":"latest","chalk":"latest","convert-source-map":"latest","del":"latest","fancy-log":"latest","fs-extra":"^6.0.1","gulp":"3.X","gulp-clone":"latest","gulp-concat":"latest","gulp-help":"latest","gulp-if":"latest","gulp-insert":"latest","gulp-newer":"latest","gulp-rename":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","istanbul":"latest","jake":"latest","merge2":"latest","minimist":"latest","mkdirp":"latest","mocha":"latest","mocha-fivemat-progress-reporter":"latest","plugin-error":"latest","q":"latest","remove-internal":"^2.9.2","run-sequence":"latest","source-map-support":"latest","through2":"latest","travis-fold":"latest","tslint":"latest","typescript":"next","vinyl":"latest","vinyl-sourcemaps-apply":"latest","xml2js":"^0.4.19"},"scripts":{"pretest":"jake tests","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","build:compiler":"jake local","build:tests":"jake tests","start":"node lib/tsc","clean":"jake clean","gulp":"gulp","jake":"jake","lint":"jake lint","setup-hooks":"node scripts/link-hooks.js"},"browser":{"fs":false,"os":false,"path":false},"dependencies":{},"gitHead":"ad63468ed57cd9761418bcd1c7740d1dd1eb5269","readme":"[![Build Status](https://travis-ci.org/Microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)\r\n[![VSTS Build Status](https://typescript.visualstudio.com/_apis/public/build/definitions/cf7ac146-d525-443c-b23c-0d58337efebc/4/badge)](https://typescript.visualstudio.com/TypeScript/_build/latest?definitionId=4&view=logs) \r\n[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)\r\n\r\n# TypeScript\r\n\r\n[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\r\n\r\n[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types to JavaScript that support tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).\r\n\r\n## Installing\r\n\r\nFor the latest stable version:\r\n\r\n```bash\r\nnpm install -g typescript\r\n```\r\n\r\nFor our nightly builds:\r\n\r\n```bash\r\nnpm install -g typescript@next\r\n```\r\n\r\n## Contribute\r\n\r\nThere are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.\r\n* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.\r\n* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).\r\n* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript). \r\n* Join the [#typescript](https://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.\r\n* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).\r\n* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),\r\n [pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).\r\n\r\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see \r\nthe [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) \r\nwith any additional questions or comments.\r\n\r\n## Documentation\r\n\r\n*  [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)\r\n*  [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)\r\n*  [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)\r\n*  [Homepage](https://www.typescriptlang.org/)\r\n\r\n## Building\r\n\r\nIn order to build the TypeScript compiler, ensure that you have [Git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/) installed.\r\n\r\nClone a copy of the repo:\r\n\r\n```bash\r\ngit clone https://github.com/Microsoft/TypeScript.git\r\n```\r\n\r\nChange to the TypeScript directory:\r\n\r\n```bash\r\ncd TypeScript\r\n```\r\n\r\nInstall Jake tools and dev dependencies:\r\n\r\n```bash\r\nnpm install -g jake\r\nnpm install\r\n```\r\n\r\nUse one of the following to build and test:\r\n\r\n```\r\njake local            # Build the compiler into built/local \r\njake clean            # Delete the built compiler \r\njake LKG              # Replace the last known good with the built one.\r\n                      # Bootstrapping step to be executed when the built compiler reaches a stable state.\r\njake tests            # Build the test infrastructure using the built compiler. \r\njake runtests         # Run tests using the built compiler and test infrastructure. \r\n                      # You can override the host or specify a test for this command. \r\n                      # Use host=<hostName> or tests=<testPath>. \r\njake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional\r\n                        parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.\r\njake baseline-accept  # This replaces the baseline test results with the results obtained from jake runtests.\r\njake lint             # Runs tslint on the TypeScript source.\r\njake help             # List the above commands. \r\n```\r\n\r\n\r\n## Usage\r\n\r\n```bash\r\nnode built/local/tsc.js hello.ts\r\n```\r\n\r\n\r\n## Roadmap\r\n\r\nFor details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).\r\n","readmeFilename":"README.md","_id":"typescript@3.1.0-dev.20180813","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"dist":{"integrity":"sha512-3sooaeRS1KvHoZ/hE8v2VhlxojcPvHBVZ5jXi070GscZA9BeZ/sXA21Un5m9xqeXMESrWFt7onto2xZfwj2XQg==","shasum":"c522ff37f1ba845eb9197e8a3f6ffe78da7a8913","tarball":"https://registry.npmjs.org/typescript/-/typescript-3.1.0-dev.20180813.tgz","fileCount":78,"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"},"maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/typescript_3.1.0-dev.20180813_1534187113991_0.27632787321381547"}}},"readme":"","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"time":{"modified":"2018-08-13T19:05:17.576Z","created":"2012-10-01T15:35:39.553Z","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"},"author":{"name":"Microsoft Corp."},"repository":{"type":"git","url":"git+https://github.com/Microsoft/TypeScript.git"},"users":{"pvorb":true,"mpinteractiv":true,"urish":true,"theblacksmith":true,"vvakame":true,"silas":true,"carlosb":true,"edalorzo":true,"sinclair":true,"isao":true,"atheken":true,"ktaeyln":true,"nexustools":true,"joshuacc":true,"incar":true,"moonpyk":true,"reekdeb":true,"agantelin":true,"mhfrantz":true,"gimystic":true,"adrian.arroyocalle":true,"smorchon":true,"nickeljew":true,"zolern":true,"lupideo":true,"tkhemani":true,"lexicality":true,"icirellik":true,"johnpapa":true,"aitorllj93":true,"oburejin":true,"ben-barbier":true,"ubi":true,"jpetitte":true,"brentlintner":true,"mrmochi":true,"nycdotnet":true,"jimkropa":true,"kontrax":true,"codeprowong":true,"kron4eg":true,"tcskrovseth":true,"jimlloyd":true,"xeoneux":true,"rwhogg":true,"wkaifang":true,"scaffrey":true,"ovrmrw":true,"lcdss":true,"fadihania":true,"artemigos":true,"jonwilkinson":true,"hust007":true,"amartelr":true,"mccataldo":true,"evan2x":true,"a3.ivanenko":true,"sternelee":true,"bsnote":true,"redstrike":true,"enriched":true,"timdp":true,"tobiasnickel":true,"wombatworks":true,"evanyeung":true,"vasz":true,"cs.x":true,"davidjsalazarmoreno":true,"garenyondem":true,"illuminator":true,"djamseed":true,"enet4":true,"dimonfox":true,"kalahari":true,"kyle_needham":true,"nickeltobias":true,"lex_nel":true,"marais":true,"roman-io":true,"hypo9eal":true,"daam":true,"leongaban":true,"sakura":true,"th3brink":true,"arttse":true,"julienrbrt":true,"itomek":true,"maurojunior":true,"kayahr":true,"piecioshka":true,"drewigg":true,"webstyle":true,"alimd":true,"andywalkers":true,"manjunathd":true,"abdihaikal":true,"walkercz":true,"zafix":true,"mysticatea":true,"jerrywu":true,"matiasmarani":true,"cangulo":true,"danielsimonjr":true,"filipve":true,"jansor":true,"justin.doherty":true,"cfleschhut":true,"edm00se":true,"faraoman":true,"seshanda":true,"nbering":true,"floriannagel":true,"guanfeng":true,"rebolon":true,"natarajanmca11":true,"juk":true,"caeyna":true,"leonardorb":true,"tmurngon":true,"shakakira":true,"largepuma":true,"tsyue":true,"knoja4":true,"areasis":true,"azertypow":true,"ahvonenj":true,"igorsetsfire":true,"morganz":true,"kbezold":true,"plantain_00":true,"ishida":true,"mattw":true,"jamiechoi":true,"pmoleri_ig":true,"easimonenko":true,"thinhair":true,"serhiiso":true,"reduardo7":true,"nohomey":true,"avernon2":true,"codekraft-studio":true,"elbertbiggs360":true,"trusktr":true,"sergeyshandar":true,"ptrevethan":true,"drdanryan":true,"jota":true,"fistynuts":true,"krocon":true,"ognjen.jevremovic":true,"robinbuschmann":true,"thewhiterabbit":true,"escapeimagery":true,"mseminatore":true,"chinawolf_wyp":true,"j717273419":true,"rocket0191":true,"ovgu12":true,"markis":true,"morogasper":true,"playthefallen":true,"chenwei791129":true,"craigiswayne":true,"batz":true,"fredcorn":true,"kingfeast":true,"arcanedev":true,"alessandro.perrone":true,"maxwelldu":true,"k-ta-yamada":true,"kiaratto":true,"evanshortiss":true,"ricardogobbosouza":true,"rbcorrea":true,"tewarid":true,"rahsaanbasek":true,"y2zz":true,"mattyboy":true,"deyshin":true,"alexxnica":true,"metaa":true,"shentengtu":true,"heartnett":true,"dnarvaez":true,"buru1020":true,"serge-nikitin":true,"panlw":true,"jamesbedont":true,"albertico88":true,"slavqa":true,"manojkhannakm":true,"hwhmusic":true,"kefniark":true,"rdca84":true,"sg6":true,"yukoff":true,"bittercoffee":true,"majkel":true,"d-band":true,"russleyshaw":true,"yangwao":true,"zoser":true,"krostyslav":true,"paulkolesnyk":true,"ackerapple":true,"allen_l_liu":true,"azz":true,"remmeier":true,"nemolo":true,"mdang8":true,"shadster":true,"nicky-lenaers":true,"t0ngt0n9":true,"adeelquadri":true,"orenschwartz":true,"luffy84217":true,"willwm":true,"dbobrov":true,"pgabronis":true,"ksugiura":true,"yangzw":true,"naokie":true,"tztz":true,"mgthomas99":true,"stephanlv":true,"sagarjadhav":true,"qiuqiu666":true,"logol":true,"lmcarreiro":true,"dh19911021":true,"phil1929":true,"stormcrows":true,"omaraljabli":true,"yeming":true,"ik_make":true,"mdecker":true,"abetomo":true,"sshrike":true,"zamis":true,"renishskills":true,"severen":true,"tido":true,"miroklarin":true,"mdedirudianto":true,"akinhwan":true,"pepperpot":true,"centiball":true,"cab1729":true,"fuji44":true,"willwolffmyren":true,"arsafab":true,"takonyc":true,"askyous":true,"fvcproductions":true,"digitalclover":true,"hjbowers":true,"cameronnokes":true},"homepage":"http://typescriptlang.org/","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"readmeFilename":"","license":"Apache-2.0","_attachments":{}}
diff --git a/test/config/__snapshots__/env.spec.js.snap b/test/config/__snapshots__/env.spec.js.snap
index 219281be7b6f2e567ca28f884d5347f018f44288..035f17cdf4805bb65615192e8350b2ad82f0aea3 100644
--- a/test/config/__snapshots__/env.spec.js.snap
+++ b/test/config/__snapshots__/env.spec.js.snap
@@ -1,5 +1,14 @@
 // Jest Snapshot v1, https://goo.gl/fbAQLP
 
+exports[`config/env .getConfig(env) supports Azure DevOps 1`] = `
+Object {
+  "endpoint": "an Azure DevOps endpoint",
+  "hostRules": Array [],
+  "platform": "azure",
+  "token": "an Azure DevOps token",
+}
+`;
+
 exports[`config/env .getConfig(env) supports Bitbucket token 1`] = `
 Object {
   "endpoint": "a bitbucket endpoint",
@@ -65,15 +74,6 @@ Object {
 }
 `;
 
-exports[`config/env .getConfig(env) supports VSTS 1`] = `
-Object {
-  "endpoint": "a vsts endpoint",
-  "hostRules": Array [],
-  "platform": "vsts",
-  "token": "a vsts token",
-}
-`;
-
 exports[`config/env .getConfig(env) supports docker username/password 1`] = `
 Object {
   "hostRules": Array [
diff --git a/test/config/env.spec.js b/test/config/env.spec.js
index 0ed3d0e44b3ea27ab1b120f220ea4fc3e544015d..3068f749dc84f5906b10128404dbd60de468252d 100644
--- a/test/config/env.spec.js
+++ b/test/config/env.spec.js
@@ -65,11 +65,11 @@ describe('config/env', () => {
       };
       expect(env.getConfig(envParam)).toMatchSnapshot();
     });
-    it('supports VSTS', () => {
+    it('supports Azure DevOps', () => {
       const envParam = {
-        RENOVATE_PLATFORM: 'vsts',
-        RENOVATE_TOKEN: 'a vsts token',
-        RENOVATE_ENDPOINT: 'a vsts endpoint',
+        RENOVATE_PLATFORM: 'azure',
+        RENOVATE_TOKEN: 'an Azure DevOps token',
+        RENOVATE_ENDPOINT: 'an Azure DevOps endpoint',
       };
       expect(env.getConfig(envParam)).toMatchSnapshot();
     });
diff --git a/test/config/index.spec.js b/test/config/index.spec.js
index a1f83b43bbf8442c9535614cdf137ad6450358c2..768bffaf3410c39b9aba8563b86778216062e436 100644
--- a/test/config/index.spec.js
+++ b/test/config/index.spec.js
@@ -16,8 +16,8 @@ describe('config/index', () => {
     let defaultArgv;
     let ghGot;
     let get;
-    let vstsApi;
-    let vstsHelper;
+    let azureApi;
+    let azure;
     beforeEach(() => {
       jest.resetModules();
       configParser = require('../../lib/config/index.js');
@@ -28,10 +28,10 @@ describe('config/index', () => {
       ghGot = require('gh-got');
       jest.mock('gl-got');
       get = require('gl-got');
-      jest.mock('../../lib/platform/vsts/vsts-got-wrapper');
-      vstsApi = require('../../lib/platform/vsts/vsts-got-wrapper');
-      jest.mock('../../lib/platform/vsts/vsts-helper');
-      vstsHelper = require('../../lib/platform/vsts/vsts-helper');
+      jest.mock('../../lib/platform/azure/azure-got-wrapper');
+      azureApi = require('../../lib/platform/azure/azure-got-wrapper');
+      jest.mock('../../lib/platform/azure/azure-helper');
+      azure = require('../../lib/platform/azure/azure-helper');
     });
     it('throws for invalid platform', async () => {
       const env = {};
@@ -68,8 +68,8 @@ describe('config/index', () => {
         'No authentication found for platform https://gitlab.com/api/v4/ (gitlab)'
       );
     });
-    it('throws for no vsts token', async () => {
-      const env = { RENOVATE_PLATFORM: 'vsts' };
+    it('throws for no Azure DevOps token', async () => {
+      const env = { RENOVATE_PLATFORM: 'azure' };
       let err;
       try {
         await configParser.parseConfigs(env, defaultArgv);
@@ -77,7 +77,7 @@ describe('config/index', () => {
         err = e;
       }
       expect(err.message).toBe(
-        'No authentication found for platform undefined (vsts)'
+        'No authentication found for platform undefined (azure)'
       );
     });
     it('supports token in env', async () => {
@@ -144,16 +144,16 @@ describe('config/index', () => {
       expect(ghGot.mock.calls.length).toBe(0);
       expect(get.mock.calls.length).toBe(1);
     });
-    it('autodiscovers vsts platform', async () => {
+    it('autodiscovers Azure DevOps platform', async () => {
       const env = {};
       defaultArgv = defaultArgv.concat([
         '--autodiscover',
-        '--platform=vsts',
+        '--platform=azure',
         '--endpoint=endpoint',
         '--token=abc',
       ]);
-      vstsHelper.getFile.mockImplementationOnce(() => `Hello Renovate!`);
-      vstsApi.gitApi.mockImplementationOnce(() => ({
+      azure.getFile.mockImplementationOnce(() => `Hello Renovate!`);
+      azureApi.gitApi.mockImplementationOnce(() => ({
         getRepositories: jest.fn(() => [
           {
             name: 'repo1',
@@ -169,14 +169,14 @@ describe('config/index', () => {
           },
         ]),
       }));
-      vstsHelper.getProjectAndRepo.mockImplementationOnce(() => ({
+      azure.getProjectAndRepo.mockImplementationOnce(() => ({
         project: 'prj1',
         repo: 'repo1',
       }));
       await configParser.parseConfigs(env, defaultArgv);
       expect(ghGot.mock.calls.length).toBe(0);
       expect(get.mock.calls.length).toBe(0);
-      expect(vstsApi.gitApi.mock.calls.length).toBe(1);
+      expect(azureApi.gitApi.mock.calls.length).toBe(1);
     });
     it('logs if no autodiscovered repositories', async () => {
       const env = { RENOVATE_TOKEN: 'abc' };
diff --git a/test/platform/__snapshots__/index.spec.js.snap b/test/platform/__snapshots__/index.spec.js.snap
index 7e3561009a32cbae1d9b23355ce7456a7ea3ed13..2b4835616e8b282897f2638c7c508742f74cb4bf 100644
--- a/test/platform/__snapshots__/index.spec.js.snap
+++ b/test/platform/__snapshots__/index.spec.js.snap
@@ -1,6 +1,6 @@
 // Jest Snapshot v1, https://goo.gl/fbAQLP
 
-exports[`platform has a list of supported methods for github 1`] = `
+exports[`platform has a list of supported methods for azure 1`] = `
 Array [
   "getRepos",
   "cleanRepo",
@@ -42,7 +42,7 @@ Array [
 ]
 `;
 
-exports[`platform has a list of supported methods for gitlab 1`] = `
+exports[`platform has a list of supported methods for github 1`] = `
 Array [
   "getRepos",
   "cleanRepo",
@@ -84,7 +84,7 @@ Array [
 ]
 `;
 
-exports[`platform has a list of supported methods for vsts 1`] = `
+exports[`platform has a list of supported methods for gitlab 1`] = `
 Array [
   "getRepos",
   "cleanRepo",
diff --git a/test/platform/vsts/__snapshots__/vsts-got-wrapper.spec.js.snap b/test/platform/azure/__snapshots__/azure-got-wrapper.spec.js.snap
similarity index 94%
rename from test/platform/vsts/__snapshots__/vsts-got-wrapper.spec.js.snap
rename to test/platform/azure/__snapshots__/azure-got-wrapper.spec.js.snap
index 65f95a1e3baf452620e4b7af80b60dd06ad537db..b0a5f149c236374320384cfb37c4890e3ea3fe07 100644
--- a/test/platform/vsts/__snapshots__/vsts-got-wrapper.spec.js.snap
+++ b/test/platform/azure/__snapshots__/azure-got-wrapper.spec.js.snap
@@ -1,6 +1,6 @@
 // Jest Snapshot v1, https://goo.gl/fbAQLP
 
-exports[`platform/vsts/vsts-got-wrapper gitApi should set token and endpoint 1`] = `
+exports[`platform/azure/azure-got-wrapper gitApi should set token and endpoint 1`] = `
 WebApi {
   "authHandler": PersonalAccessTokenCredentialHandler {
     "token": "myToken",
diff --git a/test/platform/vsts/__snapshots__/vsts-helper.spec.js.snap b/test/platform/azure/__snapshots__/azure-helper.spec.js.snap
similarity index 51%
rename from test/platform/vsts/__snapshots__/vsts-helper.spec.js.snap
rename to test/platform/azure/__snapshots__/azure-helper.spec.js.snap
index 4e48e2042c079aded27645ed54f76751324d499d..7e992189e33e74a8f70e13336be3b0fcf67912fe 100644
--- a/test/platform/vsts/__snapshots__/vsts-helper.spec.js.snap
+++ b/test/platform/azure/__snapshots__/azure-helper.spec.js.snap
@@ -1,6 +1,20 @@
 // Jest Snapshot v1, https://goo.gl/fbAQLP
 
-exports[`platform/vsts/helpers getChanges should be get the commit obj formated (file to create) 1`] = `
+exports[`platform/azure/helpers getAzureBranchObj should be the branch object formated 1`] = `
+Object {
+  "name": "refs/heads/branchName",
+  "oldObjectId": "132",
+}
+`;
+
+exports[`platform/azure/helpers getAzureBranchObj should be the branch object formated 2`] = `
+Object {
+  "name": "refs/heads/branchName",
+  "oldObjectId": "0000000000000000000000000000000000000000",
+}
+`;
+
+exports[`platform/azure/helpers getChanges should be get the commit obj formated (file to create) 1`] = `
 Array [
   Object {
     "changeType": 1,
@@ -15,7 +29,7 @@ Array [
 ]
 `;
 
-exports[`platform/vsts/helpers getChanges should be get the commit obj formated (file to update) 1`] = `
+exports[`platform/azure/helpers getChanges should be get the commit obj formated (file to update) 1`] = `
 Array [
   Object {
     "changeType": 2,
@@ -30,7 +44,7 @@ Array [
 ]
 `;
 
-exports[`platform/vsts/helpers getCommitDetails should get commit details 1`] = `
+exports[`platform/azure/helpers getCommitDetails should get commit details 1`] = `
 Object {
   "parents": Array [
     "123456",
@@ -38,23 +52,23 @@ Object {
 }
 `;
 
-exports[`platform/vsts/helpers getFile should return the file content because it is not a json 1`] = `"{\\"hello\\"= \\"test\\"}"`;
+exports[`platform/azure/helpers getFile should return the file content because it is not a json 1`] = `"{\\"hello\\"= \\"test\\"}"`;
 
-exports[`platform/vsts/helpers getProjectAndRepo should return the object with project and repo 1`] = `
+exports[`platform/azure/helpers getProjectAndRepo should return the object with project and repo 1`] = `
 Object {
   "project": "prjName",
   "repo": "myRepoName",
 }
 `;
 
-exports[`platform/vsts/helpers getProjectAndRepo should return the object with same strings 1`] = `
+exports[`platform/azure/helpers getProjectAndRepo should return the object with same strings 1`] = `
 Object {
   "project": "myRepoName",
   "repo": "myRepoName",
 }
 `;
 
-exports[`platform/vsts/helpers getRef should get the ref 1`] = `
+exports[`platform/azure/helpers getRef should get the ref 1`] = `
 Array [
   Object {
     "objectId": 132,
@@ -62,7 +76,7 @@ Array [
 ]
 `;
 
-exports[`platform/vsts/helpers getRef should get the ref 2`] = `
+exports[`platform/azure/helpers getRef should get the ref 2`] = `
 Array [
   Object {
     "objectId": "132",
@@ -70,7 +84,7 @@ Array [
 ]
 `;
 
-exports[`platform/vsts/helpers getRenovatePRFormat should be formated (closed v2) 1`] = `
+exports[`platform/azure/helpers getRenovatePRFormat should be formated (closed v2) 1`] = `
 Object {
   "canRebase": true,
   "displayNumber": "Pull Request #undefined",
@@ -80,7 +94,7 @@ Object {
 }
 `;
 
-exports[`platform/vsts/helpers getRenovatePRFormat should be formated (closed) 1`] = `
+exports[`platform/azure/helpers getRenovatePRFormat should be formated (closed) 1`] = `
 Object {
   "canRebase": true,
   "displayNumber": "Pull Request #undefined",
@@ -90,7 +104,7 @@ Object {
 }
 `;
 
-exports[`platform/vsts/helpers getRenovatePRFormat should be formated (isConflicted) 1`] = `
+exports[`platform/azure/helpers getRenovatePRFormat should be formated (isConflicted) 1`] = `
 Object {
   "canRebase": true,
   "displayNumber": "Pull Request #undefined",
@@ -101,7 +115,7 @@ Object {
 }
 `;
 
-exports[`platform/vsts/helpers getRenovatePRFormat should be formated (not closed) 1`] = `
+exports[`platform/azure/helpers getRenovatePRFormat should be formated (not closed) 1`] = `
 Object {
   "canRebase": true,
   "displayNumber": "Pull Request #undefined",
@@ -111,18 +125,4 @@ Object {
 }
 `;
 
-exports[`platform/vsts/helpers getVSTSBranchObj should be the branch object formated 1`] = `
-Object {
-  "name": "refs/heads/branchName",
-  "oldObjectId": "132",
-}
-`;
-
-exports[`platform/vsts/helpers getVSTSBranchObj should be the branch object formated 2`] = `
-Object {
-  "name": "refs/heads/branchName",
-  "oldObjectId": "0000000000000000000000000000000000000000",
-}
-`;
-
-exports[`platform/vsts/helpers max4000Chars should be the same 1`] = `"Hello"`;
+exports[`platform/azure/helpers max4000Chars should be the same 1`] = `"Hello"`;
diff --git a/test/platform/azure/__snapshots__/index.spec.js.snap b/test/platform/azure/__snapshots__/index.spec.js.snap
new file mode 100644
index 0000000000000000000000000000000000000000..8c67594f064093e32f6413313ccef8e7e8804298
--- /dev/null
+++ b/test/platform/azure/__snapshots__/index.spec.js.snap
@@ -0,0 +1,175 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`platform/azure createPr() should create and return a PR object 1`] = `
+Object {
+  "displayNumber": "Pull Request #456",
+  "number": 456,
+  "pullRequestId": 456,
+}
+`;
+
+exports[`platform/azure createPr() should create and return a PR object from base branch 1`] = `
+Object {
+  "displayNumber": "Pull Request #456",
+  "number": 456,
+  "pullRequestId": 456,
+}
+`;
+
+exports[`platform/azure ensureComment add comment 1`] = `
+Array [
+  Array [],
+  Array [],
+  Array [],
+]
+`;
+
+exports[`platform/azure findPr(branchName, prTitle, state) returns pr if found it all state 1`] = `
+Object {
+  "head": Object {
+    "ref": "branch-a",
+  },
+  "number": 1,
+  "state": "closed",
+  "title": "branch a pr",
+}
+`;
+
+exports[`platform/azure findPr(branchName, prTitle, state) returns pr if found it close 1`] = `
+Object {
+  "head": Object {
+    "ref": "branch-a",
+  },
+  "number": 1,
+  "state": "closed",
+  "title": "branch a pr",
+}
+`;
+
+exports[`platform/azure findPr(branchName, prTitle, state) returns pr if found it open 1`] = `
+Object {
+  "head": Object {
+    "ref": "branch-a",
+  },
+  "number": 1,
+  "state": "open",
+  "title": "branch a pr",
+}
+`;
+
+exports[`platform/azure findPr(branchName, prTitle, state) returns pr if found not open 1`] = `
+Object {
+  "head": Object {
+    "ref": "branch-a",
+  },
+  "number": 1,
+  "state": "closed",
+  "title": "branch a pr",
+}
+`;
+
+exports[`platform/azure getAllRenovateBranches() should return all renovate branches 1`] = `
+Array [
+  "renovate/a",
+  "renovate/b",
+]
+`;
+
+exports[`platform/azure getBranchLastCommitTime should return a Date 1`] = `"1986-11-07T00:00:00Z"`;
+
+exports[`platform/azure getBranchPr(branchName) should return the pr 1`] = `null`;
+
+exports[`platform/azure getCommitMessages() returns commits messages 1`] = `
+Array [
+  "com1",
+  "com2",
+  "com3",
+]
+`;
+
+exports[`platform/azure getFile(filePatch, branchName) should return the encoded file content 1`] = `"Hello Renovate!"`;
+
+exports[`platform/azure getFileList should return the files matching the fileName 1`] = `
+Array [
+  "package.json",
+  "src/app/package.json",
+  "src/otherapp/package.json",
+  "symlinks/package.json",
+]
+`;
+
+exports[`platform/azure getPr(prNo) should return a pr in the right format 1`] = `
+Object {
+  "pullRequestId": 1234,
+}
+`;
+
+exports[`platform/azure getPrBody(input) returns updated pr body 1`] = `"https://github.com/foo/bar/issues/5 plus also [a link](https://github.com/foo/bar/issues/5)"`;
+
+exports[`platform/azure getRepos should return an array of repos 1`] = `
+Array [
+  Array [],
+]
+`;
+
+exports[`platform/azure getRepos should return an array of repos 2`] = `
+Array [
+  "prj1/repo1",
+  "prj1/repo2",
+]
+`;
+
+exports[`platform/azure initRepo should initialise the config for a repo 1`] = `
+Array [
+  Array [],
+  Array [],
+]
+`;
+
+exports[`platform/azure initRepo should initialise the config for a repo 2`] = `
+Object {
+  "baseBranch": "defBr",
+  "baseCommitSHA": "1234",
+  "defaultBranch": "defBr",
+  "fileList": null,
+  "isFork": false,
+  "mergeMethod": "merge",
+  "owner": "?owner?",
+  "prList": null,
+  "privateRepo": true,
+  "repoForceRebase": false,
+  "repoId": "1",
+  "repository": "some-repo",
+}
+`;
+
+exports[`platform/azure setBaseBranch(branchName) sets the base branch 1`] = `
+Array [
+  Array [],
+  Array [],
+  Array [],
+]
+`;
+
+exports[`platform/azure setBaseBranch(branchName) sets the base branch 2`] = `
+Array [
+  Array [],
+  Array [],
+]
+`;
+
+exports[`platform/azure updatePr(prNo, title, body) should update the PR 1`] = `
+Array [
+  Array [],
+  Array [],
+  Array [],
+]
+`;
+
+exports[`platform/azure updatePr(prNo, title, body) should update the PR without description 1`] = `
+Array [
+  Array [],
+  Array [],
+  Array [],
+]
+`;
diff --git a/test/platform/vsts/vsts-got-wrapper.spec.js b/test/platform/azure/azure-got-wrapper.spec.js
similarity index 64%
rename from test/platform/vsts/vsts-got-wrapper.spec.js
rename to test/platform/azure/azure-got-wrapper.spec.js
index 3a49273de7edd4b05f7968171dd9bf308c868ad7..7511e4444dcb33cf7f0cd7524f6233abe8588af7 100644
--- a/test/platform/vsts/vsts-got-wrapper.spec.js
+++ b/test/platform/azure/azure-got-wrapper.spec.js
@@ -1,25 +1,25 @@
-describe('platform/vsts/vsts-got-wrapper', () => {
+describe('platform/azure/azure-got-wrapper', () => {
   let hostRules;
-  let vsts;
+  let azure;
   beforeEach(() => {
     // reset module
     jest.resetModules();
     hostRules = require('../../../lib/util/host-rules');
-    vsts = require('../../../lib/platform/vsts/vsts-got-wrapper');
+    azure = require('../../../lib/platform/azure/azure-got-wrapper');
   });
 
   describe('gitApi', () => {
     it('should throw an error if no token is provided', () => {
-      expect(vsts.gitApi).toThrow('No token found for vsts');
-      expect(vsts.getCoreApi).toThrow('No token found for vsts');
+      expect(azure.gitApi).toThrow('No token found for azure');
+      expect(azure.getCoreApi).toThrow('No token found for azure');
     });
     it('should set token and endpoint', async () => {
       hostRules.update({
-        platform: 'vsts',
+        platform: 'azure',
         token: 'myToken',
         endpoint: 'myEndpoint',
       });
-      const res = await vsts.vstsObj();
+      const res = await azure.azureObj();
 
       delete res.rest.client.userAgent;
       delete res.vsoClient.restClient.client.userAgent;
diff --git a/test/platform/vsts/vsts-helper.spec.js b/test/platform/azure/azure-helper.spec.js
similarity index 72%
rename from test/platform/vsts/vsts-helper.spec.js
rename to test/platform/azure/azure-helper.spec.js
index 9f8c4c57692b31efe16b6658940ad26f419cbf4a..6db87fe2749a16fb844fac4bfd85e6afb8881db0 100644
--- a/test/platform/vsts/vsts-helper.spec.js
+++ b/test/platform/azure/azure-helper.spec.js
@@ -1,75 +1,75 @@
 const { Readable } = require('stream');
 
-describe('platform/vsts/helpers', () => {
-  let vstsHelper;
-  let vstsApi;
+describe('platform/azure/helpers', () => {
+  let azureHelper;
+  let azureApi;
 
   beforeEach(() => {
     // reset module
     jest.resetModules();
-    jest.mock('../../../lib/platform/vsts/vsts-got-wrapper');
-    vstsHelper = require('../../../lib/platform/vsts/vsts-helper');
-    vstsApi = require('../../../lib/platform/vsts/vsts-got-wrapper');
+    jest.mock('../../../lib/platform/azure/azure-got-wrapper');
+    azureHelper = require('../../../lib/platform/azure/azure-helper');
+    azureApi = require('../../../lib/platform/azure/azure-got-wrapper');
   });
 
   describe('getNewBranchName', () => {
     it('should add refs/heads', () => {
-      const res = vstsHelper.getNewBranchName('testBB');
+      const res = azureHelper.getNewBranchName('testBB');
       expect(res).toBe(`refs/heads/testBB`);
     });
     it('should be the same', () => {
-      const res = vstsHelper.getNewBranchName('refs/heads/testBB');
+      const res = azureHelper.getNewBranchName('refs/heads/testBB');
       expect(res).toBe(`refs/heads/testBB`);
     });
   });
 
   describe('getBranchNameWithoutRefsheadsPrefix', () => {
     it('should be renamed', () => {
-      const res = vstsHelper.getBranchNameWithoutRefsheadsPrefix(
+      const res = azureHelper.getBranchNameWithoutRefsheadsPrefix(
         'refs/heads/testBB'
       );
       expect(res).toBe(`testBB`);
     });
     it('should log error and return null', () => {
-      const res = vstsHelper.getBranchNameWithoutRefsheadsPrefix();
+      const res = azureHelper.getBranchNameWithoutRefsheadsPrefix();
       expect(res).toBeNull();
     });
     it('should return the input', () => {
-      const res = vstsHelper.getBranchNameWithoutRefsheadsPrefix('testBB');
+      const res = azureHelper.getBranchNameWithoutRefsheadsPrefix('testBB');
       expect(res).toBe('testBB');
     });
   });
 
   describe('getRef', () => {
     it('should get the ref', async () => {
-      vstsApi.gitApi.mockImplementationOnce(() => ({
+      azureApi.gitApi.mockImplementationOnce(() => ({
         getRefs: jest.fn(() => [{ objectId: 132 }]),
       }));
-      const res = await vstsHelper.getRefs('123', 'branch');
+      const res = await azureHelper.getRefs('123', 'branch');
       expect(res).toMatchSnapshot();
     });
     it('should get 0 ref', async () => {
-      vstsApi.gitApi.mockImplementationOnce(() => ({
+      azureApi.gitApi.mockImplementationOnce(() => ({
         getRefs: jest.fn(() => []),
       }));
-      const res = await vstsHelper.getRefs('123');
+      const res = await azureHelper.getRefs('123');
       expect(res.length).toBe(0);
     });
     it('should get the ref', async () => {
-      vstsApi.gitApi.mockImplementationOnce(() => ({
+      azureApi.gitApi.mockImplementationOnce(() => ({
         getRefs: jest.fn(() => [{ objectId: '132' }]),
       }));
-      const res = await vstsHelper.getRefs('123', 'refs/head/branch1');
+      const res = await azureHelper.getRefs('123', 'refs/head/branch1');
       expect(res).toMatchSnapshot();
     });
   });
 
-  describe('getVSTSBranchObj', () => {
+  describe('getAzureBranchObj', () => {
     it('should be the branch object formated', async () => {
-      vstsApi.gitApi.mockImplementationOnce(() => ({
+      azureApi.gitApi.mockImplementationOnce(() => ({
         getRefs: jest.fn(() => [{ objectId: '132' }]),
       }));
-      const res = await vstsHelper.getVSTSBranchObj(
+      const res = await azureHelper.getAzureBranchObj(
         '123',
         'branchName',
         'base'
@@ -77,10 +77,10 @@ describe('platform/vsts/helpers', () => {
       expect(res).toMatchSnapshot();
     });
     it('should be the branch object formated', async () => {
-      vstsApi.gitApi.mockImplementationOnce(() => ({
+      azureApi.gitApi.mockImplementationOnce(() => ({
         getRefs: jest.fn(() => []),
       }));
-      const res = await vstsHelper.getVSTSBranchObj('123', 'branchName');
+      const res = await azureHelper.getAzureBranchObj('123', 'branchName');
       expect(res).toMatchSnapshot();
     });
   });
@@ -101,11 +101,11 @@ describe('platform/vsts/helpers', () => {
         },
       });
 
-      vstsApi.gitApi.mockImplementationOnce(() => ({
+      azureApi.gitApi.mockImplementationOnce(() => ({
         getItemText: jest.fn(() => mockEventStream),
       }));
 
-      const res = await vstsHelper.getChanges(
+      const res = await azureHelper.getChanges(
         [
           {
             name: './myFilePath/test',
@@ -119,11 +119,11 @@ describe('platform/vsts/helpers', () => {
       expect(res).toMatchSnapshot();
     });
     it('should be get the commit obj formated (file to create)', async () => {
-      vstsApi.gitApi.mockImplementationOnce(() => ({
+      azureApi.gitApi.mockImplementationOnce(() => ({
         getItemText: jest.fn(() => null),
       }));
 
-      const res = await vstsHelper.getChanges(
+      const res = await azureHelper.getChanges(
         [
           {
             name: './myFilePath/test',
@@ -154,11 +154,11 @@ describe('platform/vsts/helpers', () => {
         },
       });
 
-      vstsApi.gitApi.mockImplementationOnce(() => ({
+      azureApi.gitApi.mockImplementationOnce(() => ({
         getItemText: jest.fn(() => mockEventStream),
       }));
 
-      const res = await vstsHelper.getFile(
+      const res = await azureHelper.getFile(
         '123',
         'repository',
         './myFilePath/test',
@@ -182,11 +182,11 @@ describe('platform/vsts/helpers', () => {
         },
       });
 
-      vstsApi.gitApi.mockImplementationOnce(() => ({
+      azureApi.gitApi.mockImplementationOnce(() => ({
         getItemText: jest.fn(() => mockEventStream),
       }));
 
-      const res = await vstsHelper.getFile(
+      const res = await azureHelper.getFile(
         '123',
         'repository',
         './myFilePath/test',
@@ -210,11 +210,11 @@ describe('platform/vsts/helpers', () => {
         },
       });
 
-      vstsApi.gitApi.mockImplementationOnce(() => ({
+      azureApi.gitApi.mockImplementationOnce(() => ({
         getItemText: jest.fn(() => mockEventStream),
       }));
 
-      const res = await vstsHelper.getFile(
+      const res = await azureHelper.getFile(
         '123',
         'repository',
         './myFilePath/test',
@@ -224,13 +224,13 @@ describe('platform/vsts/helpers', () => {
     });
 
     it('should return null because the file is not readable', async () => {
-      vstsApi.gitApi.mockImplementationOnce(() => ({
+      azureApi.gitApi.mockImplementationOnce(() => ({
         getItemText: jest.fn(() => ({
           readable: false,
         })),
       }));
 
-      const res = await vstsHelper.getFile(
+      const res = await azureHelper.getFile(
         '123',
         'repository',
         './myFilePath/test',
@@ -242,7 +242,7 @@ describe('platform/vsts/helpers', () => {
 
   describe('max4000Chars', () => {
     it('should be the same', () => {
-      const res = vstsHelper.max4000Chars('Hello');
+      const res = azureHelper.max4000Chars('Hello');
       expect(res).toMatchSnapshot();
     });
     it('should be truncated', () => {
@@ -250,58 +250,58 @@ describe('platform/vsts/helpers', () => {
       for (let i = 0; i < 5000; i += 1) {
         str += 'a';
       }
-      const res = vstsHelper.max4000Chars(str);
+      const res = azureHelper.max4000Chars(str);
       expect(res.length).toBe(3999);
     });
   });
 
   describe('getRenovatePRFormat', () => {
     it('should be formated (closed)', () => {
-      const res = vstsHelper.getRenovatePRFormat({ status: 2 });
+      const res = azureHelper.getRenovatePRFormat({ status: 2 });
       expect(res).toMatchSnapshot();
     });
 
     it('should be formated (closed v2)', () => {
-      const res = vstsHelper.getRenovatePRFormat({ status: 3 });
+      const res = azureHelper.getRenovatePRFormat({ status: 3 });
       expect(res).toMatchSnapshot();
     });
 
     it('should be formated (not closed)', () => {
-      const res = vstsHelper.getRenovatePRFormat({ status: 1 });
+      const res = azureHelper.getRenovatePRFormat({ status: 1 });
       expect(res).toMatchSnapshot();
     });
 
     it('should be formated (isConflicted)', () => {
-      const res = vstsHelper.getRenovatePRFormat({ mergeStatus: 2 });
+      const res = azureHelper.getRenovatePRFormat({ mergeStatus: 2 });
       expect(res).toMatchSnapshot();
     });
   });
 
   describe('getCommitDetails', () => {
     it('should get commit details', async () => {
-      vstsApi.gitApi.mockImplementationOnce(() => ({
+      azureApi.gitApi.mockImplementationOnce(() => ({
         getCommit: jest.fn(() => ({
           parents: ['123456'],
         })),
       }));
-      const res = await vstsHelper.getCommitDetails('123', '123456');
+      const res = await azureHelper.getCommitDetails('123', '123456');
       expect(res).toMatchSnapshot();
     });
   });
 
   describe('getProjectAndRepo', () => {
     it('should return the object with same strings', async () => {
-      const res = await vstsHelper.getProjectAndRepo('myRepoName');
+      const res = await azureHelper.getProjectAndRepo('myRepoName');
       expect(res).toMatchSnapshot();
     });
     it('should return the object with project and repo', async () => {
-      const res = await vstsHelper.getProjectAndRepo('prjName/myRepoName');
+      const res = await azureHelper.getProjectAndRepo('prjName/myRepoName');
       expect(res).toMatchSnapshot();
     });
     it('should return an error', async () => {
       let err;
       try {
-        await vstsHelper.getProjectAndRepo('prjName/myRepoName/blalba');
+        await azureHelper.getProjectAndRepo('prjName/myRepoName/blalba');
       } catch (error) {
         err = error;
       }
diff --git a/test/platform/vsts/index.spec.js b/test/platform/azure/index.spec.js
similarity index 67%
rename from test/platform/vsts/index.spec.js
rename to test/platform/azure/index.spec.js
index ac84f1f12fce67aa92bf7dc29a4b47e4deda6346..fcc25b60176881dc0f54db3d51292a004bdfaf50 100644
--- a/test/platform/vsts/index.spec.js
+++ b/test/platform/azure/index.spec.js
@@ -1,24 +1,24 @@
 const hostRules = require('../../../lib/util/host-rules');
 
-describe('platform/vsts', () => {
-  let vsts;
-  let vstsApi;
-  let vstsHelper;
+describe('platform/azure', () => {
+  let azure;
+  let azureApi;
+  let azureHelper;
   beforeEach(() => {
     // clean up hostRules
     hostRules.clear();
 
     // reset module
     jest.resetModules();
-    jest.mock('../../../lib/platform/vsts/vsts-got-wrapper');
-    jest.mock('../../../lib/platform/vsts/vsts-helper');
-    vsts = require('../../../lib/platform/vsts');
-    vstsApi = require('../../../lib/platform/vsts/vsts-got-wrapper');
-    vstsHelper = require('../../../lib/platform/vsts/vsts-helper');
+    jest.mock('../../../lib/platform/azure/azure-got-wrapper');
+    jest.mock('../../../lib/platform/azure/azure-helper');
+    azure = require('../../../lib/platform/azure');
+    azureApi = require('../../../lib/platform/azure/azure-got-wrapper');
+    azureHelper = require('../../../lib/platform/azure/azure-helper');
   });
 
   function getRepos(token, endpoint) {
-    vstsApi.gitApi.mockImplementationOnce(() => ({
+    azureApi.gitApi.mockImplementationOnce(() => ({
       getRepositories: jest.fn(() => [
         {
           name: 'repo1',
@@ -34,7 +34,7 @@ describe('platform/vsts', () => {
         },
       ]),
     }));
-    return vsts.getRepos(token, endpoint);
+    return azure.getRepos(token, endpoint);
   }
 
   describe('getRepos', () => {
@@ -43,22 +43,22 @@ describe('platform/vsts', () => {
         'sometoken',
         'https://fabrikam.VisualStudio.com/DefaultCollection'
       );
-      expect(vstsApi.gitApi.mock.calls).toMatchSnapshot();
+      expect(azureApi.gitApi.mock.calls).toMatchSnapshot();
       expect(repos).toMatchSnapshot();
     });
   });
   describe('getRepoStatus()', () => {
     it('exists', async () => {
-      expect(await vsts.getRepoStatus()).toEqual({});
+      expect(await azure.getRepoStatus()).toEqual({});
     });
   });
   describe('cleanRepo()', () => {
     it('exists', () => {
-      vsts.cleanRepo();
+      azure.cleanRepo();
     });
   });
   function initRepo(...args) {
-    vstsApi.gitApi.mockImplementationOnce(() => ({
+    azureApi.gitApi.mockImplementationOnce(() => ({
       getRepositories: jest.fn(() => [
         {
           name: 'some-repo',
@@ -78,23 +78,23 @@ describe('platform/vsts', () => {
         },
       ]),
     }));
-    vstsApi.gitApi.mockImplementationOnce(() => ({
+    azureApi.gitApi.mockImplementationOnce(() => ({
       getBranch: jest.fn(() => ({ commit: { commitId: '1234' } })),
     }));
-    vstsHelper.getProjectAndRepo.mockImplementationOnce(() => ({
+    azureHelper.getProjectAndRepo.mockImplementationOnce(() => ({
       project: 'some-repo',
       repo: 'some-repo',
     }));
 
     if (typeof args[0] === 'string') {
-      return vsts.initRepo({
+      return azure.initRepo({
         repository: args[0],
         token: args[1],
         endpoint: 'https://my.custom.endpoint/',
       });
     }
 
-    return vsts.initRepo({
+    return azure.initRepo({
       endpoint: 'https://my.custom.endpoint/',
       ...args[0],
     });
@@ -107,14 +107,14 @@ describe('platform/vsts', () => {
         token: 'token',
         endpoint: 'https://my.custom.endpoint/',
       });
-      expect(vstsApi.gitApi.mock.calls).toMatchSnapshot();
+      expect(azureApi.gitApi.mock.calls).toMatchSnapshot();
       expect(config).toMatchSnapshot();
     });
   });
 
   describe('getRepoForceRebase', () => {
     it('should return false', () => {
-      expect(vsts.getRepoForceRebase()).toBe(false);
+      expect(azure.getRepoForceRebase()).toBe(false);
     });
   });
 
@@ -122,24 +122,24 @@ describe('platform/vsts', () => {
     it('sets the base branch', async () => {
       await initRepo('some-repo', 'token');
       // getBranchCommit
-      vstsApi.gitApi.mockImplementationOnce(() => ({
+      azureApi.gitApi.mockImplementationOnce(() => ({
         getBranch: jest.fn(() => ({
           commit: { commitId: '1234' },
         })),
       }));
-      await vsts.setBaseBranch('some-branch');
-      expect(vstsApi.gitApi.mock.calls).toMatchSnapshot();
+      await azure.setBaseBranch('some-branch');
+      expect(azureApi.gitApi.mock.calls).toMatchSnapshot();
     });
     it('sets the base branch', async () => {
       await initRepo('some-repo', 'token');
       // getBranchCommit
-      vstsApi.gitApi.mockImplementationOnce(() => ({
+      azureApi.gitApi.mockImplementationOnce(() => ({
         getBranch: jest.fn(() => ({
           commit: { commitId: '1234' },
         })),
       }));
-      await vsts.setBaseBranch();
-      expect(vstsApi.gitApi.mock.calls).toMatchSnapshot();
+      await azure.setBaseBranch();
+      expect(azureApi.gitApi.mock.calls).toMatchSnapshot();
     });
   });
 
@@ -151,22 +151,22 @@ describe('platform/vsts', () => {
         'https://my.custom.endpoint/'
       );
       expect(config.repoId).toBe('1');
-      vstsApi.gitApi.mockImplementationOnce(() => ({
+      azureApi.gitApi.mockImplementationOnce(() => ({
         getCommits: jest.fn(() => [
           { comment: 'com1' },
           { comment: 'com2' },
           { comment: 'com3' },
         ]),
       }));
-      const msg = await vsts.getCommitMessages();
+      const msg = await azure.getCommitMessages();
       expect(msg).toMatchSnapshot();
     });
     it('returns empty array if error', async () => {
       await initRepo({ repository: 'some/repo', token: 'token' });
-      vstsApi.gitApi.mockImplementationOnce(() => {
+      azureApi.gitApi.mockImplementationOnce(() => {
         throw new Error('some error');
       });
-      const msgs = await vsts.getCommitMessages();
+      const msgs = await azure.getCommitMessages();
       expect(msgs).toEqual([]);
     });
   });
@@ -174,15 +174,15 @@ describe('platform/vsts', () => {
   describe('getFile(filePatch, branchName)', () => {
     it('should return the encoded file content', async () => {
       await initRepo('some-repo', 'token');
-      vstsHelper.getFile.mockImplementationOnce(() => `Hello Renovate!`);
-      const content = await vsts.getFile('package.json');
+      azureHelper.getFile.mockImplementationOnce(() => `Hello Renovate!`);
+      const content = await azure.getFile('package.json');
       expect(content).toMatchSnapshot();
     });
   });
 
   describe('findPr(branchName, prTitle, state)', () => {
     it('returns pr if found it open', async () => {
-      vstsApi.gitApi.mockImplementationOnce(() => ({
+      azureApi.gitApi.mockImplementationOnce(() => ({
         getPullRequests: jest.fn(() => [
           {
             pullRequestId: 1,
@@ -192,20 +192,20 @@ describe('platform/vsts', () => {
           },
         ]),
       }));
-      vstsHelper.getNewBranchName.mockImplementationOnce(
+      azureHelper.getNewBranchName.mockImplementationOnce(
         () => 'refs/heads/branch-a'
       );
-      vstsHelper.getRenovatePRFormat.mockImplementationOnce(() => ({
+      azureHelper.getRenovatePRFormat.mockImplementationOnce(() => ({
         number: 1,
         head: { ref: 'branch-a' },
         title: 'branch a pr',
         state: 'open',
       }));
-      const res = await vsts.findPr('branch-a', 'branch a pr', 'open');
+      const res = await azure.findPr('branch-a', 'branch a pr', 'open');
       expect(res).toMatchSnapshot();
     });
     it('returns pr if found not open', async () => {
-      vstsApi.gitApi.mockImplementationOnce(() => ({
+      azureApi.gitApi.mockImplementationOnce(() => ({
         getPullRequests: jest.fn(() => [
           {
             pullRequestId: 1,
@@ -215,20 +215,20 @@ describe('platform/vsts', () => {
           },
         ]),
       }));
-      vstsHelper.getNewBranchName.mockImplementationOnce(
+      azureHelper.getNewBranchName.mockImplementationOnce(
         () => 'refs/heads/branch-a'
       );
-      vstsHelper.getRenovatePRFormat.mockImplementationOnce(() => ({
+      azureHelper.getRenovatePRFormat.mockImplementationOnce(() => ({
         number: 1,
         head: { ref: 'branch-a' },
         title: 'branch a pr',
         state: 'closed',
       }));
-      const res = await vsts.findPr('branch-a', 'branch a pr', '!open');
+      const res = await azure.findPr('branch-a', 'branch a pr', '!open');
       expect(res).toMatchSnapshot();
     });
     it('returns pr if found it close', async () => {
-      vstsApi.gitApi.mockImplementationOnce(() => ({
+      azureApi.gitApi.mockImplementationOnce(() => ({
         getPullRequests: jest.fn(() => [
           {
             pullRequestId: 1,
@@ -238,20 +238,20 @@ describe('platform/vsts', () => {
           },
         ]),
       }));
-      vstsHelper.getNewBranchName.mockImplementationOnce(
+      azureHelper.getNewBranchName.mockImplementationOnce(
         () => 'refs/heads/branch-a'
       );
-      vstsHelper.getRenovatePRFormat.mockImplementationOnce(() => ({
+      azureHelper.getRenovatePRFormat.mockImplementationOnce(() => ({
         number: 1,
         head: { ref: 'branch-a' },
         title: 'branch a pr',
         state: 'closed',
       }));
-      const res = await vsts.findPr('branch-a', 'branch a pr', 'closed');
+      const res = await azure.findPr('branch-a', 'branch a pr', 'closed');
       expect(res).toMatchSnapshot();
     });
     it('returns pr if found it all state', async () => {
-      vstsApi.gitApi.mockImplementationOnce(() => ({
+      azureApi.gitApi.mockImplementationOnce(() => ({
         getPullRequests: jest.fn(() => [
           {
             pullRequestId: 1,
@@ -261,21 +261,21 @@ describe('platform/vsts', () => {
           },
         ]),
       }));
-      vstsHelper.getNewBranchName.mockImplementationOnce(
+      azureHelper.getNewBranchName.mockImplementationOnce(
         () => 'refs/heads/branch-a'
       );
-      vstsHelper.getRenovatePRFormat.mockImplementationOnce(() => ({
+      azureHelper.getRenovatePRFormat.mockImplementationOnce(() => ({
         number: 1,
         head: { ref: 'branch-a' },
         title: 'branch a pr',
         state: 'closed',
       }));
-      const res = await vsts.findPr('branch-a', 'branch a pr');
+      const res = await azure.findPr('branch-a', 'branch a pr');
       expect(res).toMatchSnapshot();
     });
     /*
     it('returns pr if found it but add an error', async () => {
-      vstsApi.gitApi.mockImplementationOnce(() => ({
+      azureApi.gitApi.mockImplementationOnce(() => ({
         getPullRequests: jest.fn(() => [
           {
             pullRequestId: 1,
@@ -285,45 +285,45 @@ describe('platform/vsts', () => {
           },
         ]),
       }));
-      vstsHelper.getNewBranchName.mockImplementationOnce(
+      azureHelper.getNewBranchName.mockImplementationOnce(
         () => 'refs/heads/branch-a'
       );
-      vstsHelper.getRenovatePRFormat.mockImplementationOnce(() => ({
+      azureHelper.getRenovatePRFormat.mockImplementationOnce(() => ({
         number: 1,
         head: { ref: 'branch-a' },
         title: 'branch a pr',
         isClosed: true,
       }));
-      const res = await vsts.findPr('branch-a', 'branch a pr', 'blabla');
+      const res = await azure.findPr('branch-a', 'branch a pr', 'blabla');
       expect(res).toMatchSnapshot();
     });
     it('returns null if error', async () => {
       await initRepo({ repository: 'some/repo', token: 'token' });
-      vstsApi.gitApi.mockImplementationOnce(() => {
+      azureApi.gitApi.mockImplementationOnce(() => {
         throw new Error('some error');
       });
-      const pr = await vsts.findPr('branch-a', 'branch a pr');
+      const pr = await azure.findPr('branch-a', 'branch a pr');
       expect(pr).toBeNull();
     });
     */
   });
   describe('getPrList()', () => {
     it('returns empty array', () => {
-      expect(vsts.getPrList()).toEqual([]);
+      expect(azure.getPrList()).toEqual([]);
     });
   });
   describe('getFileList', () => {
     it('returns empty array if error', async () => {
       await initRepo({ repository: 'some/repo', token: 'token' });
-      vstsApi.gitApi.mockImplementationOnce(() => {
+      azureApi.gitApi.mockImplementationOnce(() => {
         throw new Error('some error');
       });
-      const files = await vsts.getFileList();
+      const files = await azure.getFileList();
       expect(files).toEqual([]);
     });
     it('caches the result', async () => {
       await initRepo({ repository: 'some/repo', token: 'token' });
-      vstsApi.gitApi.mockImplementationOnce(() => ({
+      azureApi.gitApi.mockImplementationOnce(() => ({
         getItems: jest.fn(() => [
           { path: '/symlinks/package.json' },
           { isFolder: false, path: '/package.json' },
@@ -332,14 +332,14 @@ describe('platform/vsts', () => {
           { type: 'blob', path: '/src/otherapp/package.json' },
         ]),
       }));
-      let files = await vsts.getFileList();
+      let files = await azure.getFileList();
       expect(files.length).toBe(4);
-      files = await vsts.getFileList();
+      files = await azure.getFileList();
       expect(files.length).toBe(4);
     });
     it('should return the files matching the fileName', async () => {
       await initRepo({ repository: 'some/repo', token: 'token' });
-      vstsApi.gitApi.mockImplementationOnce(() => ({
+      azureApi.gitApi.mockImplementationOnce(() => ({
         getItems: jest.fn(() => [
           { path: '/symlinks/package.json' },
           { isFolder: false, path: '/package.json' },
@@ -348,7 +348,7 @@ describe('platform/vsts', () => {
           { type: 'blob', path: '/src/otherapp/package.json' },
         ]),
       }));
-      const files = await vsts.getFileList();
+      const files = await azure.getFileList();
       expect(files).toMatchSnapshot();
     });
   });
@@ -356,11 +356,11 @@ describe('platform/vsts', () => {
   describe('commitFilesToBranch(branchName, files, message, parentBranch)', () => {
     it('should add a new commit to the branch', async () => {
       await initRepo({ repository: 'some/repo', token: 'token' });
-      vstsApi.gitApi.mockImplementationOnce(() => ({
+      azureApi.gitApi.mockImplementationOnce(() => ({
         createPush: jest.fn(() => true),
       }));
-      vstsHelper.getVSTSBranchObj.mockImplementationOnce(() => 'newBranch');
-      vstsHelper.getRefs.mockImplementation(() => [{ objectId: '123' }]);
+      azureHelper.getAzureBranchObj.mockImplementationOnce(() => 'newBranch');
+      azureHelper.getRefs.mockImplementation(() => [{ objectId: '123' }]);
 
       const files = [
         {
@@ -368,20 +368,20 @@ describe('platform/vsts', () => {
           contents: 'hello world',
         },
       ];
-      await vsts.commitFilesToBranch(
+      await azure.commitFilesToBranch(
         'package.json',
         files,
         'my commit message'
       );
-      expect(vstsApi.gitApi.mock.calls.length).toBe(3);
+      expect(azureApi.gitApi.mock.calls.length).toBe(3);
     });
     it('should add a new commit to an existing branch', async () => {
       await initRepo({ repository: 'some/repo', token: 'token' });
-      vstsApi.gitApi.mockImplementationOnce(() => ({
+      azureApi.gitApi.mockImplementationOnce(() => ({
         createPush: jest.fn(() => true),
       }));
-      vstsHelper.getVSTSBranchObj.mockImplementationOnce(() => 'newBranch');
-      vstsHelper.getRefs.mockImplementation(() => []);
+      azureHelper.getAzureBranchObj.mockImplementationOnce(() => 'newBranch');
+      azureHelper.getRefs.mockImplementation(() => []);
 
       const files = [
         {
@@ -389,20 +389,20 @@ describe('platform/vsts', () => {
           contents: 'hello world',
         },
       ];
-      await vsts.commitFilesToBranch(
+      await azure.commitFilesToBranch(
         'package.json',
         files,
         'my commit message'
       );
-      expect(vstsApi.gitApi.mock.calls.length).toBe(3);
+      expect(azureApi.gitApi.mock.calls.length).toBe(3);
     });
   });
 
   describe('branchExists(branchName)', () => {
     it('should return false if the branch does not exist', async () => {
       await initRepo('some-repo', 'token');
-      vstsHelper.getRefs.mockImplementation(() => []);
-      const exists = await vsts.branchExists('thebranchname');
+      azureHelper.getRefs.mockImplementation(() => []);
+      const exists = await azure.branchExists('thebranchname');
       expect(exists).toBe(false);
     });
   });
@@ -410,18 +410,18 @@ describe('platform/vsts', () => {
   describe('getBranchPr(branchName)', () => {
     it('should return null if no PR exists', async () => {
       await initRepo({ repository: 'some/repo', token: 'token' });
-      vstsApi.gitApi.mockImplementationOnce(() => ({
+      azureApi.gitApi.mockImplementationOnce(() => ({
         findPr: jest.fn(() => false),
         getPr: jest.fn(() => {
           'myPRName';
         }),
       }));
-      const pr = await vsts.getBranchPr('somebranch');
+      const pr = await azure.getBranchPr('somebranch');
       expect(pr).toBe(null);
     });
     it('should return the pr', async () => {
       await initRepo({ repository: 'some/repo', token: 'token' });
-      vstsApi.gitApi.mockImplementation(() => ({
+      azureApi.gitApi.mockImplementation(() => ({
         getPullRequests: jest.fn(() => [
           {
             pullRequestId: 1,
@@ -431,17 +431,17 @@ describe('platform/vsts', () => {
           },
         ]),
       }));
-      vstsHelper.getNewBranchName.mockImplementation(
+      azureHelper.getNewBranchName.mockImplementation(
         () => 'refs/heads/branch-a'
       );
-      vstsHelper.getRenovatePRFormat.mockImplementation(() => ({
+      azureHelper.getRenovatePRFormat.mockImplementation(() => ({
         pullRequestId: 1,
         number: 1,
         head: { ref: 'branch-a' },
         title: 'branch a pr',
         isClosed: false,
       }));
-      const pr = await vsts.getBranchPr('somebranch');
+      const pr = await azure.getBranchPr('somebranch');
       expect(pr).toMatchSnapshot();
     });
   });
@@ -449,54 +449,54 @@ describe('platform/vsts', () => {
   describe('getBranchStatus(branchName, requiredStatusChecks)', () => {
     it('return success if requiredStatusChecks null', async () => {
       await initRepo('some-repo', 'token');
-      const res = await vsts.getBranchStatus('somebranch', null);
+      const res = await azure.getBranchStatus('somebranch', null);
       expect(res).toEqual('success');
     });
     it('return failed if unsupported requiredStatusChecks', async () => {
       await initRepo('some-repo', 'token');
-      const res = await vsts.getBranchStatus('somebranch', ['foo']);
+      const res = await azure.getBranchStatus('somebranch', ['foo']);
       expect(res).toEqual('failed');
     });
     it('should pass through success', async () => {
       await initRepo({ repository: 'some/repo', token: 'token' });
-      vstsApi.gitApi.mockImplementationOnce(() => ({
+      azureApi.gitApi.mockImplementationOnce(() => ({
         getBranch: jest.fn(() => ({ aheadCount: 0 })),
       }));
-      const res = await vsts.getBranchStatus('somebranch', []);
+      const res = await azure.getBranchStatus('somebranch', []);
       expect(res).toEqual('success');
     });
     it('should pass through failed', async () => {
       await initRepo({ repository: 'some/repo', token: 'token' });
-      vstsApi.gitApi.mockImplementationOnce(() => ({
+      azureApi.gitApi.mockImplementationOnce(() => ({
         getBranch: jest.fn(() => ({ aheadCount: 123 })),
       }));
-      const res = await vsts.getBranchStatus('somebranch', []);
+      const res = await azure.getBranchStatus('somebranch', []);
       expect(res).toEqual('pending');
     });
   });
 
   describe('getPr(prNo)', () => {
     it('should return null if no prNo is passed', async () => {
-      const pr = await vsts.getPr(null);
+      const pr = await azure.getPr(null);
       expect(pr).toBe(null);
     });
-    it('should return null if no PR is returned from vsts', async () => {
+    it('should return null if no PR is returned from azure', async () => {
       await initRepo({ repository: 'some/repo', token: 'token' });
-      vstsApi.gitApi.mockImplementationOnce(() => ({
+      azureApi.gitApi.mockImplementationOnce(() => ({
         getPullRequests: jest.fn(() => []),
       }));
-      const pr = await vsts.getPr(1234);
+      const pr = await azure.getPr(1234);
       expect(pr).toBe(null);
     });
     it('should return a pr in the right format', async () => {
       await initRepo({ repository: 'some/repo', token: 'token' });
-      vstsApi.gitApi.mockImplementationOnce(() => ({
+      azureApi.gitApi.mockImplementationOnce(() => ({
         getPullRequests: jest.fn(() => [{ pullRequestId: 1234 }]),
       }));
-      vstsHelper.getRenovatePRFormat.mockImplementation(() => ({
+      azureHelper.getRenovatePRFormat.mockImplementation(() => ({
         pullRequestId: 1234,
       }));
-      const pr = await vsts.getPr(1234);
+      const pr = await azure.getPr(1234);
       expect(pr).toMatchSnapshot();
     });
   });
@@ -504,18 +504,18 @@ describe('platform/vsts', () => {
   describe('createPr()', () => {
     it('should create and return a PR object', async () => {
       await initRepo({ repository: 'some/repo', token: 'token' });
-      vstsApi.gitApi.mockImplementationOnce(() => ({
+      azureApi.gitApi.mockImplementationOnce(() => ({
         createPullRequest: jest.fn(() => ({
           pullRequestId: 456,
           displayNumber: `Pull Request #456`,
         })),
       }));
-      vstsHelper.getRenovatePRFormat.mockImplementation(() => ({
+      azureHelper.getRenovatePRFormat.mockImplementation(() => ({
         displayNumber: 'Pull Request #456',
         number: 456,
         pullRequestId: 456,
       }));
-      const pr = await vsts.createPr(
+      const pr = await azure.createPr(
         'some-branch',
         'The Title',
         'Hello world',
@@ -525,18 +525,18 @@ describe('platform/vsts', () => {
     });
     it('should create and return a PR object from base branch', async () => {
       await initRepo({ repository: 'some/repo', token: 'token' });
-      vstsApi.gitApi.mockImplementationOnce(() => ({
+      azureApi.gitApi.mockImplementationOnce(() => ({
         createPullRequest: jest.fn(() => ({
           pullRequestId: 456,
           displayNumber: `Pull Request #456`,
         })),
       }));
-      vstsHelper.getRenovatePRFormat.mockImplementation(() => ({
+      azureHelper.getRenovatePRFormat.mockImplementation(() => ({
         displayNumber: 'Pull Request #456',
         number: 456,
         pullRequestId: 456,
       }));
-      const pr = await vsts.createPr(
+      const pr = await azure.createPr(
         'some-branch',
         'The Title',
         'Hello world',
@@ -550,55 +550,55 @@ describe('platform/vsts', () => {
   describe('updatePr(prNo, title, body)', () => {
     it('should update the PR', async () => {
       await initRepo({ repository: 'some/repo', token: 'token' });
-      vstsApi.gitApi.mockImplementationOnce(() => ({
+      azureApi.gitApi.mockImplementationOnce(() => ({
         updatePullRequest: jest.fn(),
       }));
-      await vsts.updatePr(1234, 'The New Title', 'Hello world again');
-      expect(vstsApi.gitApi.mock.calls).toMatchSnapshot();
+      await azure.updatePr(1234, 'The New Title', 'Hello world again');
+      expect(azureApi.gitApi.mock.calls).toMatchSnapshot();
     });
 
     it('should update the PR without description', async () => {
       await initRepo({ repository: 'some/repo', token: 'token' });
-      vstsApi.gitApi.mockImplementationOnce(() => ({
+      azureApi.gitApi.mockImplementationOnce(() => ({
         updatePullRequest: jest.fn(),
       }));
-      await vsts.updatePr(1234, 'The New Title - autoclose');
-      expect(vstsApi.gitApi.mock.calls).toMatchSnapshot();
+      await azure.updatePr(1234, 'The New Title - autoclose');
+      expect(azureApi.gitApi.mock.calls).toMatchSnapshot();
     });
   });
 
   describe('ensureComment', () => {
     it('add comment', async () => {
       await initRepo({ repository: 'some/repo', token: 'token' });
-      vstsApi.gitApi.mockImplementation(() => ({
+      azureApi.gitApi.mockImplementation(() => ({
         createThread: jest.fn(() => [{ id: 123 }]),
       }));
-      await vsts.ensureComment(42, 'some-subject', 'some\ncontent');
-      expect(vstsApi.gitApi.mock.calls).toMatchSnapshot();
+      await azure.ensureComment(42, 'some-subject', 'some\ncontent');
+      expect(azureApi.gitApi.mock.calls).toMatchSnapshot();
     });
   });
 
   describe('isBranchStale', () => {
     it('should return true', async () => {
       await initRepo({ repository: 'some/repo', token: 'token' });
-      vstsApi.gitApi.mockImplementationOnce(() => ({
+      azureApi.gitApi.mockImplementationOnce(() => ({
         getBranch: jest.fn(() => ({ commit: { commitId: '123456' } })),
       }));
-      vstsHelper.getCommitDetails.mockImplementation(() => ({
+      azureHelper.getCommitDetails.mockImplementation(() => ({
         parents: ['789654'],
       }));
-      const res = await vsts.isBranchStale();
+      const res = await azure.isBranchStale();
       expect(res).toBe(true);
     });
     it('should return false', async () => {
       await initRepo({ repository: 'some/repo', token: 'token' });
-      vstsApi.gitApi.mockImplementationOnce(() => ({
+      azureApi.gitApi.mockImplementationOnce(() => ({
         getBranch: jest.fn(() => ({ commit: { commitId: '123457' } })),
       }));
-      vstsHelper.getCommitDetails.mockImplementation(() => ({
+      azureHelper.getCommitDetails.mockImplementation(() => ({
         parents: ['1234'],
       }));
-      const res = await vsts.isBranchStale('branch');
+      const res = await azure.isBranchStale('branch');
       expect(res).toBe(false);
     });
   });
@@ -606,14 +606,14 @@ describe('platform/vsts', () => {
   describe('getAllRenovateBranches()', () => {
     it('should return all renovate branches', async () => {
       await initRepo({ repository: 'some/repo', token: 'token' });
-      vstsApi.gitApi.mockImplementationOnce(() => ({
+      azureApi.gitApi.mockImplementationOnce(() => ({
         getBranches: jest.fn(() => [
           { name: 'master' },
           { name: 'renovate/a' },
           { name: 'renovate/b' },
         ]),
       }));
-      const res = await vsts.getAllRenovateBranches('renovate/');
+      const res = await azure.getAllRenovateBranches('renovate/');
       expect(res).toMatchSnapshot();
     });
   });
@@ -621,49 +621,49 @@ describe('platform/vsts', () => {
   describe('ensureCommentRemoval', () => {
     it('deletes comment if found', async () => {
       await initRepo({ repository: 'some/repo', token: 'token' });
-      vstsApi.gitApi.mockImplementation(() => ({
+      azureApi.gitApi.mockImplementation(() => ({
         getThreads: jest.fn(() => [
           { comments: [{ content: '### some-subject\n\nblabla' }], id: 123 },
         ]),
         updateThread: jest.fn(),
       }));
-      await vsts.ensureCommentRemoval(42, 'some-subject');
-      expect(vstsApi.gitApi.mock.calls.length).toBe(3);
+      await azure.ensureCommentRemoval(42, 'some-subject');
+      expect(azureApi.gitApi.mock.calls.length).toBe(3);
     });
     it('nothing should happen, no number', async () => {
-      await vsts.ensureCommentRemoval();
-      expect(vstsApi.gitApi.mock.calls.length).toBe(0);
+      await azure.ensureCommentRemoval();
+      expect(azureApi.gitApi.mock.calls.length).toBe(0);
     });
     it('comment not found', async () => {
       await initRepo({ repository: 'some/repo', token: 'token' });
-      vstsApi.gitApi.mockImplementation(() => ({
+      azureApi.gitApi.mockImplementation(() => ({
         getThreads: jest.fn(() => [
           { comments: [{ content: 'stupid comment' }], id: 123 },
         ]),
         updateThread: jest.fn(),
       }));
-      await vsts.ensureCommentRemoval(42, 'some-subject');
-      expect(vstsApi.gitApi.mock.calls.length).toBe(3);
+      await azure.ensureCommentRemoval(42, 'some-subject');
+      expect(azureApi.gitApi.mock.calls.length).toBe(3);
     });
   });
 
   describe('getBranchLastCommitTime', () => {
     it('should return a Date', async () => {
       await initRepo({ repository: 'some/repo', token: 'token' });
-      vstsApi.gitApi.mockImplementationOnce(() => ({
+      azureApi.gitApi.mockImplementationOnce(() => ({
         getBranch: jest.fn(() => ({
           commit: { committer: { date: '1986-11-07T00:00:00Z' } },
         })),
       }));
-      const res = await vsts.getBranchLastCommitTime('some-branch');
+      const res = await azure.getBranchLastCommitTime('some-branch');
       expect(res).toMatchSnapshot();
     });
   });
 
   describe('deleteBranch and abandon PR', () => {
     it('should delete the branch', async () => {
-      vstsHelper.getRefs.mockImplementation(() => [{ objectId: '123' }]);
-      vstsApi.gitApi.mockImplementationOnce(() => ({
+      azureHelper.getRefs.mockImplementation(() => [{ objectId: '123' }]);
+      azureApi.gitApi.mockImplementationOnce(() => ({
         updateRefs: jest.fn(() => [
           {
             name: 'refs/head/testBranch',
@@ -672,70 +672,70 @@ describe('platform/vsts', () => {
           },
         ]),
       }));
-      await vsts.deleteBranch();
+      await azure.deleteBranch();
     });
   });
 
   describe('Assignees', () => {
     it('addAssignees', async () => {
       await initRepo({ repository: 'some/repo', token: 'token' });
-      vstsApi.gitApi.mockImplementation(() => ({
+      azureApi.gitApi.mockImplementation(() => ({
         createThread: jest.fn(() => [{ id: 123 }]),
       }));
-      await vsts.addAssignees(123, ['test@bonjour.fr']);
-      expect(vstsApi.gitApi.mock.calls.length).toBe(3);
+      await azure.addAssignees(123, ['test@bonjour.fr']);
+      expect(azureApi.gitApi.mock.calls.length).toBe(3);
     });
   });
 
   describe('Reviewers', () => {
     it('addReviewers', async () => {
       await initRepo({ repository: 'some/repo', token: 'token' });
-      vstsApi.gitApi.mockImplementation(() => ({
+      azureApi.gitApi.mockImplementation(() => ({
         getRepositories: jest.fn(() => [{ id: '1', project: { id: 2 } }]),
         createPullRequestReviewer: jest.fn(),
       }));
-      vstsApi.getCoreApi.mockImplementation(() => ({
+      azureApi.getCoreApi.mockImplementation(() => ({
         getTeams: jest.fn(() => [{ id: 3 }, { id: 4 }]),
         getTeamMembers: jest.fn(() => [
           { displayName: 'jyc', uniqueName: 'jyc', id: 123 },
         ]),
       }));
-      await vsts.addReviewers(123, ['test@bonjour.fr', 'jyc']);
-      expect(vstsApi.gitApi.mock.calls.length).toBe(3);
+      await azure.addReviewers(123, ['test@bonjour.fr', 'jyc']);
+      expect(azureApi.gitApi.mock.calls.length).toBe(3);
     });
   });
   describe('getPrBody(input)', () => {
     it('returns updated pr body', () => {
       const input =
         '<details>https://github.com/foo/bar/issues/5 plus also [a link](https://github.com/foo/bar/issues/5)';
-      expect(vsts.getPrBody(input)).toMatchSnapshot();
+      expect(azure.getPrBody(input)).toMatchSnapshot();
     });
   });
-  describe('Not supported by VSTS (yet!)', () => {
+  describe('Not supported by Azure DevOps (yet!)', () => {
     it('setBranchStatus', () => {
-      const res = vsts.setBranchStatus();
+      const res = azure.setBranchStatus();
       expect(res).toBeUndefined();
     });
 
     it('mergeBranch', async () => {
-      const res = await vsts.mergeBranch();
+      const res = await azure.mergeBranch();
       expect(res).toBeUndefined();
     });
 
     it('mergePr', async () => {
-      const res = await vsts.mergePr();
+      const res = await azure.mergePr();
       expect(res).toBeUndefined();
     });
 
     // to become async?
     it('getPrFiles', () => {
-      const res = vsts.getPrFiles(46);
+      const res = azure.getPrFiles(46);
       expect(res.length).toBe(0);
     });
   });
   describe('getVulnerabilityAlerts()', () => {
     it('returns empty', async () => {
-      const res = await vsts.getVulnerabilityAlerts();
+      const res = await azure.getVulnerabilityAlerts();
       expect(res).toHaveLength(0);
     });
   });
diff --git a/test/platform/index.spec.js b/test/platform/index.spec.js
index aa66bc96344a753bed90ac60b47c4a6af8641c91..a9002054229460583cad6ebc948de3927a6ef5e9 100644
--- a/test/platform/index.spec.js
+++ b/test/platform/index.spec.js
@@ -1,6 +1,6 @@
 const github = require('../../lib/platform/github');
 const gitlab = require('../../lib/platform/gitlab');
-const vsts = require('../../lib/platform/vsts');
+const azure = require('../../lib/platform/azure');
 const bitbucket = require('../../lib/platform/bitbucket');
 
 describe('platform', () => {
@@ -14,9 +14,9 @@ describe('platform', () => {
     expect(gitlabMethods).toMatchSnapshot();
   });
 
-  it('has a list of supported methods for vsts', () => {
-    const vstsMethods = Object.keys(vsts);
-    expect(vstsMethods).toMatchSnapshot();
+  it('has a list of supported methods for azure', () => {
+    const azureMethods = Object.keys(azure);
+    expect(azureMethods).toMatchSnapshot();
   });
 
   it('has same API for github and gitlab', () => {
@@ -25,10 +25,10 @@ describe('platform', () => {
     expect(githubMethods).toMatchObject(gitlabMethods);
   });
 
-  it('has same API for github and vsts', () => {
+  it('has same API for github and azure', () => {
     const githubMethods = Object.keys(github);
-    const vstsMethods = Object.keys(vsts);
-    expect(githubMethods).toMatchObject(vstsMethods);
+    const azureMethods = Object.keys(azure);
+    expect(githubMethods).toMatchObject(azureMethods);
   });
 
   it('has same API for github and Bitbucket', () => {
diff --git a/test/platform/vsts/__snapshots__/index.spec.js.snap b/test/platform/vsts/__snapshots__/index.spec.js.snap
deleted file mode 100644
index 2dec9d4d0e8627116112ae253ec8ccbfb2481b2c..0000000000000000000000000000000000000000
--- a/test/platform/vsts/__snapshots__/index.spec.js.snap
+++ /dev/null
@@ -1,175 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`platform/vsts createPr() should create and return a PR object 1`] = `
-Object {
-  "displayNumber": "Pull Request #456",
-  "number": 456,
-  "pullRequestId": 456,
-}
-`;
-
-exports[`platform/vsts createPr() should create and return a PR object from base branch 1`] = `
-Object {
-  "displayNumber": "Pull Request #456",
-  "number": 456,
-  "pullRequestId": 456,
-}
-`;
-
-exports[`platform/vsts ensureComment add comment 1`] = `
-Array [
-  Array [],
-  Array [],
-  Array [],
-]
-`;
-
-exports[`platform/vsts findPr(branchName, prTitle, state) returns pr if found it all state 1`] = `
-Object {
-  "head": Object {
-    "ref": "branch-a",
-  },
-  "number": 1,
-  "state": "closed",
-  "title": "branch a pr",
-}
-`;
-
-exports[`platform/vsts findPr(branchName, prTitle, state) returns pr if found it close 1`] = `
-Object {
-  "head": Object {
-    "ref": "branch-a",
-  },
-  "number": 1,
-  "state": "closed",
-  "title": "branch a pr",
-}
-`;
-
-exports[`platform/vsts findPr(branchName, prTitle, state) returns pr if found it open 1`] = `
-Object {
-  "head": Object {
-    "ref": "branch-a",
-  },
-  "number": 1,
-  "state": "open",
-  "title": "branch a pr",
-}
-`;
-
-exports[`platform/vsts findPr(branchName, prTitle, state) returns pr if found not open 1`] = `
-Object {
-  "head": Object {
-    "ref": "branch-a",
-  },
-  "number": 1,
-  "state": "closed",
-  "title": "branch a pr",
-}
-`;
-
-exports[`platform/vsts getAllRenovateBranches() should return all renovate branches 1`] = `
-Array [
-  "renovate/a",
-  "renovate/b",
-]
-`;
-
-exports[`platform/vsts getBranchLastCommitTime should return a Date 1`] = `"1986-11-07T00:00:00Z"`;
-
-exports[`platform/vsts getBranchPr(branchName) should return the pr 1`] = `null`;
-
-exports[`platform/vsts getCommitMessages() returns commits messages 1`] = `
-Array [
-  "com1",
-  "com2",
-  "com3",
-]
-`;
-
-exports[`platform/vsts getFile(filePatch, branchName) should return the encoded file content 1`] = `"Hello Renovate!"`;
-
-exports[`platform/vsts getFileList should return the files matching the fileName 1`] = `
-Array [
-  "package.json",
-  "src/app/package.json",
-  "src/otherapp/package.json",
-  "symlinks/package.json",
-]
-`;
-
-exports[`platform/vsts getPr(prNo) should return a pr in the right format 1`] = `
-Object {
-  "pullRequestId": 1234,
-}
-`;
-
-exports[`platform/vsts getPrBody(input) returns updated pr body 1`] = `"https://github.com/foo/bar/issues/5 plus also [a link](https://github.com/foo/bar/issues/5)"`;
-
-exports[`platform/vsts getRepos should return an array of repos 1`] = `
-Array [
-  Array [],
-]
-`;
-
-exports[`platform/vsts getRepos should return an array of repos 2`] = `
-Array [
-  "prj1/repo1",
-  "prj1/repo2",
-]
-`;
-
-exports[`platform/vsts initRepo should initialise the config for a repo 1`] = `
-Array [
-  Array [],
-  Array [],
-]
-`;
-
-exports[`platform/vsts initRepo should initialise the config for a repo 2`] = `
-Object {
-  "baseBranch": "defBr",
-  "baseCommitSHA": "1234",
-  "defaultBranch": "defBr",
-  "fileList": null,
-  "isFork": false,
-  "mergeMethod": "merge",
-  "owner": "?owner?",
-  "prList": null,
-  "privateRepo": true,
-  "repoForceRebase": false,
-  "repoId": "1",
-  "repository": "some-repo",
-}
-`;
-
-exports[`platform/vsts setBaseBranch(branchName) sets the base branch 1`] = `
-Array [
-  Array [],
-  Array [],
-  Array [],
-]
-`;
-
-exports[`platform/vsts setBaseBranch(branchName) sets the base branch 2`] = `
-Array [
-  Array [],
-  Array [],
-]
-`;
-
-exports[`platform/vsts updatePr(prNo, title, body) should update the PR 1`] = `
-Array [
-  Array [],
-  Array [],
-  Array [],
-]
-`;
-
-exports[`platform/vsts updatePr(prNo, title, body) should update the PR without description 1`] = `
-Array [
-  Array [],
-  Array [],
-  Array [],
-]
-`;
diff --git a/test/util/host-rules.spec.js b/test/util/host-rules.spec.js
index 55ab9b4d3c5a2dfef3d1c50eed8c365681b8b13d..478587e5a49d5c6d831c494020e162b494d94441 100644
--- a/test/util/host-rules.spec.js
+++ b/test/util/host-rules.spec.js
@@ -11,16 +11,16 @@ describe('util/host-rules', () => {
       );
     });
     it('throws if no endpoint ', () => {
-      expect(() => update({ platform: 'vsts' })).toThrow(
-        `Failed to configure platform 'vsts': no endpoint defined`
+      expect(() => update({ platform: 'azure' })).toThrow(
+        `Failed to configure platform 'azure': no endpoint defined`
       );
     });
 
     it('throws if invalid endpoint ', () => {
       expect(() =>
-        update({ platform: 'vsts', endpoint: '/some/path' })
+        update({ platform: 'azure', endpoint: '/some/path' })
       ).toThrow(
-        `Failed to configure platform 'vsts': no host for endpoint '/some/path'`
+        `Failed to configure platform 'azure': no host for endpoint '/some/path'`
       );
     });
     it('supports endpoint-only', () => {
diff --git a/test/workers/repository/init/apis.spec.js b/test/workers/repository/init/apis.spec.js
index 4edfaa38993f37420298cdac39da758720316468..fcae6948e59c93db202acdc8b5a5b9d7323f9f75 100644
--- a/test/workers/repository/init/apis.spec.js
+++ b/test/workers/repository/init/apis.spec.js
@@ -24,15 +24,15 @@ describe('workers/repository/init/apis', () => {
       glGot.mockReturnValueOnce({ body: [] });
       await initApis(config);
     });
-    it('runs vsts', async () => {
-      config.platform = 'vsts';
+    it('runs azure', async () => {
+      config.platform = 'azure';
       config.repository = 'some/name';
       // config.endpoint = 'https://fabrikam.visualstudio.com/DefaultCollection';
       try {
         await initApis(config);
       } catch (error) {
         expect(error.message).toBe(
-          `Failed to configure platform 'vsts': no endpoint defined`
+          `Failed to configure platform 'azure': no endpoint defined`
         );
       }
     });