Package Exports
- insomnia-importers
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (insomnia-importers) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Insomnia Importers 
This repository contains converters to translate exports into Insomnia import format.
Supported Formats:
- Insomnia 2.0
- Postman v2
- HTTP Archive Format 1.2 (HAR)
Command Line Usage
npm install -g insomnia-importers
insomnia-import /path/to/file > output.jsonNode Usage
const importers = require('insomnia-importers')
const output = importers.import('...');
console.log(JSON.stringify(output, null, 2));