{"maintainers":[{"name":"tkellen","email":"tyler@sleekcode.net"},{"name":"phated","email":"blaine@iceddev.com"}],"keywords":["cirru-script","cjsx","co","coco","coffee-script","coffee","coffee.md","csv","earlgrey","es","es6","iced","iced.md","iced-coffee-script","ini","js","json","json5","jsx","react","litcoffee","liticed","ls","livescript","toml","ts","typescript","wisp","xml","yaml","yml"],"dist-tags":{"latest":"1.0.3"},"author":{"name":"Tyler Kellen","url":"http://goingslowly.com/"},"description":"A dictionary of file extensions and associated module loaders.","readme":"# interpret\n> A dictionary of file extensions and associated module loaders.\n\n[![NPM](https://nodei.co/npm/interpret.png)](https://nodei.co/npm/interpret/)\n\n## What is it\nThis is used by [Liftoff](http://github.com/tkellen/node-liftoff) to automatically require dependencies for configuration files, and by [rechoir](http://github.com/tkellen/node-rechoir) for registering module loaders.\n\n## API\n\n### extensions\nMap file types to modules which provide a [require.extensions] loader.\n\n```js\n{\n  '.babel.js': [\n    {\n      module: 'babel-register',\n      register: function (module) {\n        module({\n          // register on .js extension due to https://github.com/joyent/node/blob/v0.12.0/lib/module.js#L353\n          // which only captures the final extension (.babel.js -> .js)\n          extensions: '.js'\n        });\n      }\n    },\n    {\n      module: 'babel-core/register',\n      register: function (module) {\n        module({\n          extensions: '.js'\n        });\n      }\n    },\n    {\n      module: 'babel/register',\n      register: function (module) {\n        module({\n          extensions: '.js'\n        });\n      }\n    }\n  ],\n  '.buble.js': 'buble/register',\n  '.cirru': 'cirru-script/lib/register',\n  '.cjsx': 'node-cjsx/register',\n  '.co': 'coco',\n  '.coffee': ['coffee-script/register', 'coffee-script'],\n  '.coffee.md': ['coffee-script/register', 'coffee-script'],\n  '.csv': 'require-csv',\n  '.eg': 'earlgrey/register',\n  '.iced': ['iced-coffee-script/register', 'iced-coffee-script'],\n  '.iced.md': 'iced-coffee-script/register',\n  '.ini': 'require-ini',\n  '.js': null,\n  '.json': null,\n  '.json5': 'json5/lib/require',\n  '.jsx': [\n    {\n      module: 'babel-register',\n      register: function (module) {\n        module({\n          extensions: '.jsx'\n        });\n      }\n    },\n    {\n      module: 'babel-core/register',\n      register: function (module) {\n        module({\n          extensions: '.jsx'\n        });\n      }\n    },\n    {\n      module: 'babel/register',\n      register: function (module) {\n        module({\n          extensions: '.jsx'\n        });\n      },\n    },\n    {\n      module: 'node-jsx',\n      register: function (module) {\n        module.install({\n          extension: '.jsx',\n          harmony: true\n        });\n      }\n    }\n  ],\n  '.litcoffee': ['coffee-script/register', 'coffee-script'],\n  '.liticed': 'iced-coffee-script/register',\n  '.ls': ['livescript', 'LiveScript'],\n  '.node': null,\n  '.toml': {\n    module: 'toml-require',\n    register: function (module) {\n      module.install();\n    }\n  },\n  '.ts': ['ts-node/register', 'typescript-node/register', 'typescript-register', 'typescript-require'],\n  '.tsx': ['ts-node/register', 'typescript-node/register'],\n  '.wisp': 'wisp/engine/node',\n  '.xml': 'require-xml',\n  '.yaml': 'require-yaml',\n  '.yml': 'require-yaml'\n};\n```\n\n### jsVariants\nSame as above, but only include the extensions which are javascript variants.\n\n## How to use it\n\nConsumers should use the exported `extensions` or `jsVariants` object to determine which module should be loaded for a given extension. If a matching extension is found, consumers should do the following:\n\n1. If the value is null, do nothing.\n\n2. If the value is a string, try to require it.\n\n3. If the value is an object, try to require the `module` property. If successful, the `register` property (a function) should be called with the module passed as the first argument.\n\n4. If the value is an array, iterate over it, attempting step #2 or #3 until one of the attempts does not throw.\n\n[require.extensions]: http://nodejs.org/api/globals.html#globals_require_extensions\n","repository":{"type":"git","url":"git://github.com/tkellen/node-interpret.git"},"users":{"simplyianm":true,"awen1983":true,"shanewholloway":true,"joaquin.briceno":true,"isenricho":true,"rajikaimal":true,"sone47":true},"bugs":{"url":"https://github.com/tkellen/node-interpret/issues"},"license":"MIT","versions":{"0.1.0":{"name":"interpret","description":"Require anything.","version":"0.1.0","homepage":"https://github.com/tkellen/node-interpret","author":{"name":"Tyler Kellen","url":"http://goingslowly.com/"},"repository":{"type":"git","url":"git://github.com/tkellen/node-interpret.git"},"bugs":{"url":"https://github.com/tkellen/node-interpret/issues"},"licenses":[{"type":"MIT","url":"https://github.com/tkellen/node-interpret/blob/master/LICENSE"}],"main":"index.js","scripts":{"test":"mocha -R spec test/index.js"},"engines":{"node":">= 0.10"},"devDependencies":{"mocha":"~1.17.1","chai":"~1.9.0","coco":"^0.9.1","coffee-script":"^1.7.1","require-csv":"0.0.1","iced-coffee-script":"^1.7.1-b","require-ini":"0.0.1","toml-require":"^1.0.1","require-xml":"0.0.1","require-yaml":"0.0.1","LiveScript":"^1.2.0"},"keywords":["coco","coffee-script","csv","iced-coffee-script","ini","livescript","toml","xml","yaml","yml"],"_id":"interpret@0.1.0","dist":{"shasum":"27fbb4d5184144399ffe3c63bf6613ae1b85e5c2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/interpret/-/interpret-0.1.0.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"tkellen","email":"tyler@sleekcode.net"},"maintainers":[{"name":"tkellen","email":"tyler@sleekcode.net"}],"directories":{}},"0.2.0":{"name":"interpret","description":"A dictionary of file extensions and associated module loaders.","version":"0.2.0","homepage":"https://github.com/tkellen/node-interpret","author":{"name":"Tyler Kellen","url":"http://goingslowly.com/"},"repository":{"type":"git","url":"git://github.com/tkellen/node-interpret.git"},"bugs":{"url":"https://github.com/tkellen/node-interpret/issues"},"licenses":[{"type":"MIT","url":"https://github.com/tkellen/node-interpret/blob/master/LICENSE"}],"main":"index.js","keywords":["coco","coffee-script","csv","iced-coffee-script","ini","livescript","toml","xml","yaml","yml"],"_id":"interpret@0.2.0","dist":{"shasum":"1d485199b8a26162c9413dd3ad7a185e9ccfa167","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/interpret/-/interpret-0.2.0.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"tkellen","email":"tyler@sleekcode.net"},"maintainers":[{"name":"tkellen","email":"tyler@sleekcode.net"}],"directories":{}},"0.3.0":{"name":"interpret","description":"A dictionary of file extensions and associated module loaders.","version":"0.3.0","homepage":"https://github.com/tkellen/node-interpret","author":{"name":"Tyler Kellen","url":"http://goingslowly.com/"},"repository":{"type":"git","url":"git://github.com/tkellen/node-interpret.git"},"bugs":{"url":"https://github.com/tkellen/node-interpret/issues"},"licenses":[{"type":"MIT","url":"https://github.com/tkellen/node-interpret/blob/master/LICENSE"}],"main":"index.js","keywords":["coco","coffee-script","csv","iced-coffee-script","ini","livescript","toml","xml","yaml","yml"],"_id":"interpret@0.3.0","dist":{"shasum":"380af3f0aa66d480464cf4194b7c5fef154ad998","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/interpret/-/interpret-0.3.0.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"tkellen","email":"tyler@sleekcode.net"},"maintainers":[{"name":"tkellen","email":"tyler@sleekcode.net"}],"directories":{}},"0.3.1":{"name":"interpret","description":"A dictionary of file extensions and associated module loaders.","version":"0.3.1","homepage":"https://github.com/tkellen/node-interpret","author":{"name":"Tyler Kellen","url":"http://goingslowly.com/"},"repository":{"type":"git","url":"git://github.com/tkellen/node-interpret.git"},"bugs":{"url":"https://github.com/tkellen/node-interpret/issues"},"licenses":[{"type":"MIT","url":"https://github.com/tkellen/node-interpret/blob/master/LICENSE"}],"main":"index.js","keywords":["coco","coffee-script","csv","iced-coffee-script","ini","livescript","toml","xml","yaml","yml"],"_id":"interpret@0.3.1","dist":{"shasum":"24bad04138ae76ea1551793f4413c70f0ba8d67a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/interpret/-/interpret-0.3.1.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"tkellen","email":"tyler@sleekcode.net"},"maintainers":[{"name":"tkellen","email":"tyler@sleekcode.net"}],"directories":{}},"0.3.2":{"name":"interpret","description":"A dictionary of file extensions and associated module loaders.","version":"0.3.2","homepage":"https://github.com/tkellen/node-interpret","author":{"name":"Tyler Kellen","url":"http://goingslowly.com/"},"repository":{"type":"git","url":"git://github.com/tkellen/node-interpret.git"},"bugs":{"url":"https://github.com/tkellen/node-interpret/issues"},"licenses":[{"type":"MIT","url":"https://github.com/tkellen/node-interpret/blob/master/LICENSE"}],"main":"index.js","keywords":["coco","coffee-script","csv","iced-coffee-script","ini","livescript","toml","xml","yaml","yml"],"_id":"interpret@0.3.2","dist":{"shasum":"134fa7a1af46ada77c3a70372820cb8018e84d58","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/interpret/-/interpret-0.3.2.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"tkellen","email":"tyler@sleekcode.net"},"maintainers":[{"name":"tkellen","email":"tyler@sleekcode.net"}],"directories":{}},"0.3.3":{"name":"interpret","description":"A dictionary of file extensions and associated module loaders.","version":"0.3.3","homepage":"https://github.com/tkellen/node-interpret","author":{"name":"Tyler Kellen","url":"http://goingslowly.com/"},"repository":{"type":"git","url":"git://github.com/tkellen/node-interpret.git"},"bugs":{"url":"https://github.com/tkellen/node-interpret/issues"},"licenses":[{"type":"MIT","url":"https://github.com/tkellen/node-interpret/blob/master/LICENSE"}],"main":"index.js","keywords":["coco","coffee-script","csv","iced-coffee-script","ini","livescript","toml","xml","yaml","yml"],"_id":"interpret@0.3.3","_shasum":"834e6f83dece228839d73af80cae11f05bd63eee","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"tkellen","email":"tyler@sleekcode.net"},"maintainers":[{"name":"tkellen","email":"tyler@sleekcode.net"}],"dist":{"shasum":"834e6f83dece228839d73af80cae11f05bd63eee","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/interpret/-/interpret-0.3.3.tgz"},"directories":{}},"0.3.4":{"name":"interpret","description":"A dictionary of file extensions and associated module loaders.","version":"0.3.4","homepage":"https://github.com/tkellen/node-interpret","author":{"name":"Tyler Kellen","url":"http://goingslowly.com/"},"repository":{"type":"git","url":"git://github.com/tkellen/node-interpret.git"},"bugs":{"url":"https://github.com/tkellen/node-interpret/issues"},"licenses":[{"type":"MIT","url":"https://github.com/tkellen/node-interpret/blob/master/LICENSE"}],"main":"index.js","keywords":["coco","coffee-script","csv","iced-coffee-script","ini","livescript","toml","xml","yaml","yml"],"_id":"interpret@0.3.4","dist":{"shasum":"32cc8471f608a435d726ff27ecb79890cb20b9cb","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/interpret/-/interpret-0.3.4.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"tkellen","email":"tyler@sleekcode.net"},"maintainers":[{"name":"tkellen","email":"tyler@sleekcode.net"}],"directories":{}},"0.3.5":{"name":"interpret","description":"A dictionary of file extensions and associated module loaders.","version":"0.3.5","homepage":"https://github.com/tkellen/node-interpret","author":{"name":"Tyler Kellen","url":"http://goingslowly.com/"},"repository":{"type":"git","url":"git://github.com/tkellen/node-interpret.git"},"bugs":{"url":"https://github.com/tkellen/node-interpret/issues"},"licenses":[{"type":"MIT","url":"https://github.com/tkellen/node-interpret/blob/master/LICENSE"}],"main":"index.js","keywords":["coco","coffee-script","csv","iced-coffee-script","ini","jsx","livescript","react","toml","xml","yaml","yml"],"_id":"interpret@0.3.5","dist":{"shasum":"0dc629e6f9d4dc05e429e18a4741880770f56c5d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/interpret/-/interpret-0.3.5.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"tkellen","email":"tyler@sleekcode.net"},"maintainers":[{"name":"tkellen","email":"tyler@sleekcode.net"}],"directories":{}},"0.3.6":{"name":"interpret","description":"A dictionary of file extensions and associated module loaders.","version":"0.3.6","homepage":"https://github.com/tkellen/node-interpret","author":{"name":"Tyler Kellen","url":"http://goingslowly.com/"},"repository":{"type":"git","url":"git://github.com/tkellen/node-interpret.git"},"bugs":{"url":"https://github.com/tkellen/node-interpret/issues"},"licenses":[{"type":"MIT","url":"https://github.com/tkellen/node-interpret/blob/master/LICENSE"}],"main":"index.js","keywords":["coco","coffee-script","csv","iced-coffee-script","ini","jsx","livescript","react","toml","xml","yaml","yml"],"gitHead":"e4d41a6a068961971687a77b85ab258ecea85fcc","_id":"interpret@0.3.6","scripts":{},"_shasum":"51b6927f372a92f1e4a2a5af0d14699de9618799","_from":".","_npmVersion":"1.4.14","_npmUser":{"name":"tkellen","email":"tyler@sleekcode.net"},"maintainers":[{"name":"tkellen","email":"tyler@sleekcode.net"}],"dist":{"shasum":"51b6927f372a92f1e4a2a5af0d14699de9618799","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/interpret/-/interpret-0.3.6.tgz"},"directories":{}},"0.3.7":{"name":"interpret","description":"A dictionary of file extensions and associated module loaders.","version":"0.3.7","homepage":"https://github.com/tkellen/node-interpret","author":{"name":"Tyler Kellen","url":"http://goingslowly.com/"},"repository":{"type":"git","url":"git://github.com/tkellen/node-interpret.git"},"bugs":{"url":"https://github.com/tkellen/node-interpret/issues"},"licenses":[{"type":"MIT","url":"https://github.com/tkellen/node-interpret/blob/master/LICENSE"}],"main":"index.js","keywords":["coco","coffee-script","csv","iced-coffee-script","ini","jsx","livescript","react","toml","typescript","xml","yaml","yml"],"gitHead":"df5960ce9d1bedb1fdf8163c96f70d92df6903fb","_id":"interpret@0.3.7","scripts":{},"_shasum":"18727eda04d50632ffa4b5eafb342b7ff398b36e","_from":".","_npmVersion":"1.4.23","_npmUser":{"name":"tkellen","email":"tyler@sleekcode.net"},"maintainers":[{"name":"tkellen","email":"tyler@sleekcode.net"}],"dist":{"shasum":"18727eda04d50632ffa4b5eafb342b7ff398b36e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/interpret/-/interpret-0.3.7.tgz"},"directories":{}},"0.3.8":{"name":"interpret","description":"A dictionary of file extensions and associated module loaders.","version":"0.3.8","homepage":"https://github.com/tkellen/node-interpret","author":{"name":"Tyler Kellen","url":"http://goingslowly.com/"},"repository":{"type":"git","url":"git://github.com/tkellen/node-interpret.git"},"bugs":{"url":"https://github.com/tkellen/node-interpret/issues"},"licenses":[{"type":"MIT","url":"https://github.com/tkellen/node-interpret/blob/master/LICENSE"}],"main":"index.js","keywords":["coco","coffee-script","csv","iced-coffee-script","ini","jsx","livescript","react","toml","typescript","xml","yaml","yml"],"gitHead":"ddbd8a1fe4e29a051ae711d73c2c20c4a43b9e7e","_id":"interpret@0.3.8","scripts":{},"_shasum":"23c65e60ed18a3e21cddccf96e8a6658548cda8b","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"tkellen","email":"tyler@sleekcode.net"},"maintainers":[{"name":"tkellen","email":"tyler@sleekcode.net"}],"dist":{"shasum":"23c65e60ed18a3e21cddccf96e8a6658548cda8b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/interpret/-/interpret-0.3.8.tgz"},"directories":{}},"0.3.9":{"name":"interpret","description":"A dictionary of file extensions and associated module loaders.","version":"0.3.9","homepage":"https://github.com/tkellen/node-interpret","author":{"name":"Tyler Kellen","url":"http://goingslowly.com/"},"repository":{"type":"git","url":"git://github.com/tkellen/node-interpret.git"},"bugs":{"url":"https://github.com/tkellen/node-interpret/issues"},"licenses":[{"type":"MIT","url":"https://github.com/tkellen/node-interpret/blob/master/LICENSE"}],"main":"index.js","keywords":["coco","coffee-script","csv","iced-coffee-script","ini","jsx","livescript","react","toml","typescript","xml","yaml","yml"],"gitHead":"758eea245f0eb965983e0c1376e4ff4716b296f6","_id":"interpret@0.3.9","scripts":{},"_shasum":"009ae2e8fe5989656d63f4ac4253d6d0625e06af","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"tkellen","email":"tyler@sleekcode.net"},"maintainers":[{"name":"tkellen","email":"tyler@sleekcode.net"}],"dist":{"shasum":"009ae2e8fe5989656d63f4ac4253d6d0625e06af","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/interpret/-/interpret-0.3.9.tgz"},"directories":{}},"0.3.10":{"name":"interpret","description":"A dictionary of file extensions and associated module loaders.","version":"0.3.10","homepage":"https://github.com/tkellen/node-interpret","author":{"name":"Tyler Kellen","url":"http://goingslowly.com/"},"repository":{"type":"git","url":"git://github.com/tkellen/node-interpret.git"},"bugs":{"url":"https://github.com/tkellen/node-interpret/issues"},"licenses":[{"type":"MIT","url":"https://github.com/tkellen/node-interpret/blob/master/LICENSE"}],"main":"index.js","keywords":["coco","coffee-script","csv","iced-coffee-script","ini","jsx","livescript","react","toml","typescript","xml","yaml","yml"],"gitHead":"8653404e7b61ea1aa00e0f39ef2a9192d62ba69e","_id":"interpret@0.3.10","scripts":{},"_shasum":"088c25de731c6c5b112a90f0071cfaf459e5a7bb","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"tkellen","email":"tyler@sleekcode.net"},"maintainers":[{"name":"tkellen","email":"tyler@sleekcode.net"}],"dist":{"shasum":"088c25de731c6c5b112a90f0071cfaf459e5a7bb","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/interpret/-/interpret-0.3.10.tgz"},"directories":{}},"0.4.0":{"name":"interpret","description":"A dictionary of file extensions and associated module loaders.","version":"0.4.0","homepage":"https://github.com/tkellen/node-interpret","author":{"name":"Tyler Kellen","url":"http://goingslowly.com/"},"repository":{"type":"git","url":"git://github.com/tkellen/node-interpret.git"},"bugs":{"url":"https://github.com/tkellen/node-interpret/issues"},"licenses":[{"type":"MIT","url":"https://github.com/tkellen/node-interpret/blob/master/LICENSE"}],"main":"index.js","keywords":["coco","coffee-script","csv","iced-coffee-script","ini","jsx","livescript","react","toml","typescript","xml","yaml","yml"],"gitHead":"f186ea6a48655514763de22acc0ca2292ce2f3f1","_id":"interpret@0.4.0","scripts":{},"_shasum":"87b9fe964e8526f498e9d34fa590584c2c9c9c01","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"tkellen","email":"tyler@sleekcode.net"},"maintainers":[{"name":"tkellen","email":"tyler@sleekcode.net"},{"name":"phated","email":"blaine@iceddev.com"}],"dist":{"shasum":"87b9fe964e8526f498e9d34fa590584c2c9c9c01","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/interpret/-/interpret-0.4.0.tgz"},"directories":{}},"0.4.1":{"name":"interpret","description":"A dictionary of file extensions and associated module loaders.","version":"0.4.1","homepage":"https://github.com/tkellen/node-interpret","author":{"name":"Tyler Kellen","url":"http://goingslowly.com/"},"repository":{"type":"git","url":"git://github.com/tkellen/node-interpret.git"},"bugs":{"url":"https://github.com/tkellen/node-interpret/issues"},"licenses":[{"type":"MIT","url":"https://github.com/tkellen/node-interpret/blob/master/LICENSE"}],"main":"index.js","keywords":["cjsx","co","coco","coffee-script","coffee","coffee.md","csv","es","es6","iced","iced.md","iced-coffee-script","ini","js","json","json5","jsx","react","litcoffee","liticed","ls","livescript","toml","ts","typescript","xml","yaml","yml"],"gitHead":"8ebe2bb67c953343ca06fa84f5722c15533cd89b","_id":"interpret@0.4.1","scripts":{},"_shasum":"4c339b241fc3d581e1ad1c65b937c9e1a48011d4","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"tkellen","email":"tyler@sleekcode.net"},"maintainers":[{"name":"tkellen","email":"tyler@sleekcode.net"},{"name":"phated","email":"blaine@iceddev.com"}],"dist":{"shasum":"4c339b241fc3d581e1ad1c65b937c9e1a48011d4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/interpret/-/interpret-0.4.1.tgz"},"directories":{}},"0.4.2":{"name":"interpret","description":"A dictionary of file extensions and associated module loaders.","version":"0.4.2","homepage":"https://github.com/tkellen/node-interpret","author":{"name":"Tyler Kellen","url":"http://goingslowly.com/"},"repository":{"type":"git","url":"git://github.com/tkellen/node-interpret.git"},"bugs":{"url":"https://github.com/tkellen/node-interpret/issues"},"licenses":[{"type":"MIT","url":"https://github.com/tkellen/node-interpret/blob/master/LICENSE"}],"main":"index.js","keywords":["cjsx","co","coco","coffee-script","coffee","coffee.md","csv","es","es6","iced","iced.md","iced-coffee-script","ini","js","json","json5","jsx","react","litcoffee","liticed","ls","livescript","toml","ts","typescript","wisp","xml","yaml","yml"],"gitHead":"012ebed099e70c921078de19bd4ef2b63af1cabf","_id":"interpret@0.4.2","scripts":{},"_shasum":"154e7a71e3efa0f86c8b6641b73cbece146c49ee","_from":".","_npmVersion":"2.1.18","_nodeVersion":"0.10.32","_npmUser":{"name":"tkellen","email":"tyler@sleekcode.net"},"maintainers":[{"name":"tkellen","email":"tyler@sleekcode.net"},{"name":"phated","email":"blaine@iceddev.com"}],"dist":{"shasum":"154e7a71e3efa0f86c8b6641b73cbece146c49ee","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/interpret/-/interpret-0.4.2.tgz"},"directories":{}},"0.4.3":{"name":"interpret","description":"A dictionary of file extensions and associated module loaders.","version":"0.4.3","homepage":"https://github.com/tkellen/node-interpret","author":{"name":"Tyler Kellen","url":"http://goingslowly.com/"},"repository":{"type":"git","url":"git://github.com/tkellen/node-interpret.git"},"bugs":{"url":"https://github.com/tkellen/node-interpret/issues"},"licenses":[{"type":"MIT","url":"https://github.com/tkellen/node-interpret/blob/master/LICENSE"}],"main":"index.js","keywords":["cjsx","co","coco","coffee-script","coffee","coffee.md","csv","es","es6","iced","iced.md","iced-coffee-script","ini","js","json","json5","jsx","react","litcoffee","liticed","ls","livescript","toml","ts","typescript","wisp","xml","yaml","yml"],"gitHead":"bdfabcc7663c23b56b632386ac3dc67ed13bced9","_id":"interpret@0.4.3","scripts":{},"_shasum":"0a1aa20e39884ae7a658388c955d810fa5f71f1c","_from":".","_npmVersion":"2.1.18","_nodeVersion":"0.10.35","_npmUser":{"name":"tkellen","email":"tyler@sleekcode.net"},"maintainers":[{"name":"tkellen","email":"tyler@sleekcode.net"},{"name":"phated","email":"blaine@iceddev.com"}],"dist":{"shasum":"0a1aa20e39884ae7a658388c955d810fa5f71f1c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/interpret/-/interpret-0.4.3.tgz"},"directories":{}},"0.5.0":{"name":"interpret","description":"A dictionary of file extensions and associated module loaders.","version":"0.5.0","homepage":"https://github.com/tkellen/node-interpret","author":{"name":"Tyler Kellen","url":"http://goingslowly.com/"},"repository":{"type":"git","url":"git://github.com/tkellen/node-interpret.git"},"bugs":{"url":"https://github.com/tkellen/node-interpret/issues"},"licenses":[{"type":"MIT","url":"https://github.com/tkellen/node-interpret/blob/master/LICENSE"}],"main":"index.js","keywords":["cjsx","co","coco","coffee-script","coffee","coffee.md","csv","es","es6","iced","iced.md","iced-coffee-script","ini","js","json","json5","jsx","react","litcoffee","liticed","ls","livescript","toml","ts","typescript","wisp","xml","yaml","yml"],"gitHead":"baea7677564bd5e86d7dc1e3ccb7bf213bb5bb2f","_id":"interpret@0.5.0","scripts":{},"_shasum":"107182c2a06b197633b484f89af181526afdddc0","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"tkellen","email":"tyler@sleekcode.net"},"maintainers":[{"name":"tkellen","email":"tyler@sleekcode.net"},{"name":"phated","email":"blaine@iceddev.com"}],"dist":{"shasum":"107182c2a06b197633b484f89af181526afdddc0","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/interpret/-/interpret-0.5.0.tgz"},"directories":{}},"0.5.1":{"name":"interpret","description":"A dictionary of file extensions and associated module loaders.","version":"0.5.1","homepage":"https://github.com/tkellen/node-interpret","author":{"name":"Tyler Kellen","url":"http://goingslowly.com/"},"repository":{"type":"git","url":"git://github.com/tkellen/node-interpret.git"},"bugs":{"url":"https://github.com/tkellen/node-interpret/issues"},"licenses":[{"type":"MIT","url":"https://github.com/tkellen/node-interpret/blob/master/LICENSE"}],"main":"index.js","keywords":["cirru-script","cjsx","co","coco","coffee-script","coffee","coffee.md","csv","es","es6","iced","iced.md","iced-coffee-script","ini","js","json","json5","jsx","react","litcoffee","liticed","ls","livescript","toml","ts","typescript","wisp","xml","yaml","yml"],"gitHead":"bf37277f6ec4b9dbd2315cc3d53d2bd1598a911d","_id":"interpret@0.5.1","scripts":{},"_shasum":"4a9ce1e8002b854ec88d2e233847e49ea0fd1fe8","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"tkellen","email":"tyler@sleekcode.net"},"maintainers":[{"name":"tkellen","email":"tyler@sleekcode.net"},{"name":"phated","email":"blaine@iceddev.com"}],"dist":{"shasum":"4a9ce1e8002b854ec88d2e233847e49ea0fd1fe8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/interpret/-/interpret-0.5.1.tgz"},"directories":{}},"0.5.2":{"name":"interpret","description":"A dictionary of file extensions and associated module loaders.","version":"0.5.2","homepage":"https://github.com/tkellen/node-interpret","author":{"name":"Tyler Kellen","url":"http://goingslowly.com/"},"repository":{"type":"git","url":"git://github.com/tkellen/node-interpret.git"},"bugs":{"url":"https://github.com/tkellen/node-interpret/issues"},"licenses":[{"type":"MIT","url":"https://github.com/tkellen/node-interpret/blob/master/LICENSE"}],"main":"index.js","keywords":["cirru-script","cjsx","co","coco","coffee-script","coffee","coffee.md","csv","es","es6","iced","iced.md","iced-coffee-script","ini","js","json","json5","jsx","react","litcoffee","liticed","ls","livescript","toml","ts","typescript","wisp","xml","yaml","yml"],"gitHead":"9576a03d602e3c10b10a831807d65c853718b1f2","_id":"interpret@0.5.2","scripts":{},"_shasum":"377833b04b5ea693ff0d533380e3dda0c0381be0","_from":".","_npmVersion":"2.6.0","_nodeVersion":"0.10.36","_npmUser":{"name":"phated","email":"blaine@iceddev.com"},"maintainers":[{"name":"tkellen","email":"tyler@sleekcode.net"},{"name":"phated","email":"blaine@iceddev.com"}],"dist":{"shasum":"377833b04b5ea693ff0d533380e3dda0c0381be0","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/interpret/-/interpret-0.5.2.tgz"},"directories":{}},"0.6.0":{"name":"interpret","description":"A dictionary of file extensions and associated module loaders.","version":"0.6.0","homepage":"https://github.com/tkellen/node-interpret","author":{"name":"Tyler Kellen","url":"http://goingslowly.com/"},"repository":{"type":"git","url":"git://github.com/tkellen/node-interpret.git"},"bugs":{"url":"https://github.com/tkellen/node-interpret/issues"},"licenses":[{"type":"MIT","url":"https://github.com/tkellen/node-interpret/blob/master/LICENSE"}],"main":"index.js","keywords":["cirru-script","cjsx","co","coco","coffee-script","coffee","coffee.md","csv","es","es6","iced","iced.md","iced-coffee-script","ini","js","json","json5","jsx","react","litcoffee","liticed","ls","livescript","toml","ts","typescript","wisp","xml","yaml","yml"],"gitHead":"d513489ffa6e62414c9170fc99a602c004b881d3","_id":"interpret@0.6.0","scripts":{},"_shasum":"323cacf5fbc3b5b383d3f28d69bad60d3cd494dc","_from":".","_npmVersion":"2.7.4","_nodeVersion":"0.12.1","_npmUser":{"name":"tkellen","email":"tyler@sleekcode.net"},"maintainers":[{"name":"tkellen","email":"tyler@sleekcode.net"},{"name":"phated","email":"blaine@iceddev.com"}],"dist":{"shasum":"323cacf5fbc3b5b383d3f28d69bad60d3cd494dc","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/interpret/-/interpret-0.6.0.tgz"},"directories":{}},"0.6.1":{"name":"interpret","description":"A dictionary of file extensions and associated module loaders.","version":"0.6.1","homepage":"https://github.com/tkellen/node-interpret","author":{"name":"Tyler Kellen","url":"http://goingslowly.com/"},"repository":{"type":"git","url":"git://github.com/tkellen/node-interpret.git"},"bugs":{"url":"https://github.com/tkellen/node-interpret/issues"},"licenses":[{"type":"MIT","url":"https://github.com/tkellen/node-interpret/blob/master/LICENSE"}],"main":"index.js","keywords":["cirru-script","cjsx","co","coco","coffee-script","coffee","coffee.md","csv","es","es6","iced","iced.md","iced-coffee-script","ini","js","json","json5","jsx","react","litcoffee","liticed","ls","livescript","toml","ts","typescript","wisp","xml","yaml","yml"],"gitHead":"0452f87f1e630b71b16cb36b82052b32c7e00dfd","_id":"interpret@0.6.1","scripts":{},"_shasum":"cadd9dbf29d73b9c1ed05932dfac4a3f315f14e9","_from":".","_npmVersion":"2.7.4","_nodeVersion":"0.12.1","_npmUser":{"name":"tkellen","email":"tyler@sleekcode.net"},"maintainers":[{"name":"tkellen","email":"tyler@sleekcode.net"},{"name":"phated","email":"blaine@iceddev.com"}],"dist":{"shasum":"cadd9dbf29d73b9c1ed05932dfac4a3f315f14e9","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/interpret/-/interpret-0.6.1.tgz"},"directories":{}},"0.6.2":{"name":"interpret","description":"A dictionary of file extensions and associated module loaders.","version":"0.6.2","homepage":"https://github.com/tkellen/node-interpret","author":{"name":"Tyler Kellen","url":"http://goingslowly.com/"},"repository":{"type":"git","url":"git://github.com/tkellen/node-interpret.git"},"bugs":{"url":"https://github.com/tkellen/node-interpret/issues"},"licenses":[{"type":"MIT","url":"https://github.com/tkellen/node-interpret/blob/master/LICENSE"}],"main":"index.js","keywords":["cirru-script","cjsx","co","coco","coffee-script","coffee","coffee.md","csv","es","es6","iced","iced.md","iced-coffee-script","ini","js","json","json5","jsx","react","litcoffee","liticed","ls","livescript","toml","ts","typescript","wisp","xml","yaml","yml"],"gitHead":"875a5f0fee494c2396dc372f2cd6332bb00bca63","_id":"interpret@0.6.2","scripts":{},"_shasum":"f76f87be2a465e00dae60ae59904fa385baa0c01","_from":".","_npmVersion":"2.7.4","_nodeVersion":"0.12.1","_npmUser":{"name":"tkellen","email":"tyler@sleekcode.net"},"maintainers":[{"name":"tkellen","email":"tyler@sleekcode.net"},{"name":"phated","email":"blaine@iceddev.com"}],"dist":{"shasum":"f76f87be2a465e00dae60ae59904fa385baa0c01","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/interpret/-/interpret-0.6.2.tgz"},"directories":{}},"0.6.3":{"name":"interpret","description":"A dictionary of file extensions and associated module loaders.","version":"0.6.3","homepage":"https://github.com/tkellen/node-interpret","author":{"name":"Tyler Kellen","url":"http://goingslowly.com/"},"repository":{"type":"git","url":"git://github.com/tkellen/node-interpret.git"},"bugs":{"url":"https://github.com/tkellen/node-interpret/issues"},"license":"MIT","main":"index.js","keywords":["cirru-script","cjsx","co","coco","coffee-script","coffee","coffee.md","csv","es","es6","iced","iced.md","iced-coffee-script","ini","js","json","json5","jsx","react","litcoffee","liticed","ls","livescript","toml","ts","typescript","wisp","xml","yaml","yml"],"gitHead":"3b9eb80017244a4d17c83217f4e0e7b7e8184a6b","_id":"interpret@0.6.3","scripts":{},"_shasum":"4b9f40aa119bc56aa3432c04fc6e2d361254ea50","_from":".","_npmVersion":"2.8.3","_nodeVersion":"0.10.36","_npmUser":{"name":"phated","email":"blaine@iceddev.com"},"maintainers":[{"name":"tkellen","email":"tyler@sleekcode.net"},{"name":"phated","email":"blaine@iceddev.com"}],"dist":{"shasum":"4b9f40aa119bc56aa3432c04fc6e2d361254ea50","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/interpret/-/interpret-0.6.3.tgz"},"directories":{}},"0.6.4":{"name":"interpret","description":"A dictionary of file extensions and associated module loaders.","version":"0.6.4","homepage":"https://github.com/tkellen/node-interpret","author":{"name":"Tyler Kellen","url":"http://goingslowly.com/"},"repository":{"type":"git","url":"git://github.com/tkellen/node-interpret.git"},"bugs":{"url":"https://github.com/tkellen/node-interpret/issues"},"license":"MIT","main":"index.js","keywords":["cirru-script","cjsx","co","coco","coffee-script","coffee","coffee.md","csv","earlgrey","es","es6","iced","iced.md","iced-coffee-script","ini","js","json","json5","jsx","react","litcoffee","liticed","ls","livescript","toml","ts","typescript","wisp","xml","yaml","yml"],"gitHead":"1634ccb32b00de51c9a5087290330c2ba1de2dc4","_id":"interpret@0.6.4","scripts":{},"_shasum":"c7625682ad0b33e1637af9d701e4f3ea187172ee","_from":".","_npmVersion":"2.7.4","_nodeVersion":"0.12.4","_npmUser":{"name":"tkellen","email":"tyler@sleekcode.net"},"maintainers":[{"name":"tkellen","email":"tyler@sleekcode.net"},{"name":"phated","email":"blaine@iceddev.com"}],"dist":{"shasum":"c7625682ad0b33e1637af9d701e4f3ea187172ee","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/interpret/-/interpret-0.6.4.tgz"},"directories":{}},"0.6.5":{"name":"interpret","description":"A dictionary of file extensions and associated module loaders.","version":"0.6.5","homepage":"https://github.com/tkellen/node-interpret","author":{"name":"Tyler Kellen","url":"http://goingslowly.com/"},"repository":{"type":"git","url":"git://github.com/tkellen/node-interpret.git"},"bugs":{"url":"https://github.com/tkellen/node-interpret/issues"},"license":"MIT","main":"index.js","keywords":["cirru-script","cjsx","co","coco","coffee-script","coffee","coffee.md","csv","earlgrey","es","es6","iced","iced.md","iced-coffee-script","ini","js","json","json5","jsx","react","litcoffee","liticed","ls","livescript","toml","ts","typescript","wisp","xml","yaml","yml"],"gitHead":"f301687afc9aeb0c93e393b34c4f0253111f1ad0","_id":"interpret@0.6.5","scripts":{},"_shasum":"14eead0fc076fb41142b0d3b599a4c8ff83f6525","_from":".","_npmVersion":"2.7.4","_nodeVersion":"0.12.4","_npmUser":{"name":"tkellen","email":"tyler@sleekcode.net"},"maintainers":[{"name":"tkellen","email":"tyler@sleekcode.net"},{"name":"phated","email":"blaine@iceddev.com"}],"dist":{"shasum":"14eead0fc076fb41142b0d3b599a4c8ff83f6525","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/interpret/-/interpret-0.6.5.tgz"},"directories":{}},"0.6.6":{"name":"interpret","description":"A dictionary of file extensions and associated module loaders.","version":"0.6.6","homepage":"https://github.com/tkellen/node-interpret","author":{"name":"Tyler Kellen","url":"http://goingslowly.com/"},"repository":{"type":"git","url":"git://github.com/tkellen/node-interpret.git"},"bugs":{"url":"https://github.com/tkellen/node-interpret/issues"},"license":"MIT","main":"index.js","keywords":["cirru-script","cjsx","co","coco","coffee-script","coffee","coffee.md","csv","earlgrey","es","es6","iced","iced.md","iced-coffee-script","ini","js","json","json5","jsx","react","litcoffee","liticed","ls","livescript","toml","ts","typescript","wisp","xml","yaml","yml"],"gitHead":"a4056f7e7996effb277ce9cead87f9e73ecf72ae","_id":"interpret@0.6.6","scripts":{},"_shasum":"fecd7a18e7ce5ca6abfb953e1f86213a49f1625b","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"tkellen","email":"tyler@sleekcode.net"},"maintainers":[{"name":"tkellen","email":"tyler@sleekcode.net"},{"name":"phated","email":"blaine@iceddev.com"}],"dist":{"shasum":"fecd7a18e7ce5ca6abfb953e1f86213a49f1625b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/interpret/-/interpret-0.6.6.tgz"},"directories":{}},"1.0.0":{"name":"interpret","description":"A dictionary of file extensions and associated module loaders.","version":"1.0.0","homepage":"https://github.com/tkellen/node-interpret","author":{"name":"Tyler Kellen","url":"http://goingslowly.com/"},"repository":{"type":"git","url":"git://github.com/tkellen/node-interpret.git"},"bugs":{"url":"https://github.com/tkellen/node-interpret/issues"},"license":"MIT","main":"index.js","keywords":["cirru-script","cjsx","co","coco","coffee-script","coffee","coffee.md","csv","earlgrey","es","es6","iced","iced.md","iced-coffee-script","ini","js","json","json5","jsx","react","litcoffee","liticed","ls","livescript","toml","ts","typescript","wisp","xml","yaml","yml"],"gitHead":"b744281ac6afbedc232f7a435a50a09359262a5d","_id":"interpret@1.0.0","scripts":{},"_shasum":"2a3338fa1c2bdbe58cdbfffabcbd0eb52b05241f","_from":".","_npmVersion":"2.14.3","_nodeVersion":"0.10.36","_npmUser":{"name":"phated","email":"blaine@iceddev.com"},"maintainers":[{"name":"tkellen","email":"tyler@sleekcode.net"},{"name":"phated","email":"blaine@iceddev.com"}],"dist":{"shasum":"2a3338fa1c2bdbe58cdbfffabcbd0eb52b05241f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/interpret/-/interpret-1.0.0.tgz"},"directories":{}},"1.0.1":{"name":"interpret","description":"A dictionary of file extensions and associated module loaders.","version":"1.0.1","homepage":"https://github.com/tkellen/node-interpret","author":{"name":"Tyler Kellen","url":"http://goingslowly.com/"},"repository":{"type":"git","url":"git://github.com/tkellen/node-interpret.git"},"bugs":{"url":"https://github.com/tkellen/node-interpret/issues"},"license":"MIT","main":"index.js","keywords":["cirru-script","cjsx","co","coco","coffee-script","coffee","coffee.md","csv","earlgrey","es","es6","iced","iced.md","iced-coffee-script","ini","js","json","json5","jsx","react","litcoffee","liticed","ls","livescript","toml","ts","typescript","wisp","xml","yaml","yml"],"gitHead":"80e9d49ece362c75e697bc7487186761efd77a6f","_id":"interpret@1.0.1","scripts":{},"_shasum":"d579fb7f693b858004947af39fa0db49f795602c","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.7.0","_npmUser":{"name":"tkellen","email":"tyler@sleekcode.net"},"maintainers":[{"name":"tkellen","email":"tyler@sleekcode.net"},{"name":"phated","email":"blaine@iceddev.com"}],"dist":{"shasum":"d579fb7f693b858004947af39fa0db49f795602c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/interpret/-/interpret-1.0.1.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/interpret-1.0.1.tgz_1462139669981_0.06998275523073971"},"directories":{}},"1.0.2":{"name":"interpret","description":"A dictionary of file extensions and associated module loaders.","version":"1.0.2","homepage":"https://github.com/tkellen/node-interpret","author":{"name":"Tyler Kellen","url":"http://goingslowly.com/"},"repository":{"type":"git","url":"git://github.com/tkellen/node-interpret.git"},"bugs":{"url":"https://github.com/tkellen/node-interpret/issues"},"license":"MIT","main":"index.js","keywords":["cirru-script","cjsx","co","coco","coffee-script","coffee","coffee.md","csv","earlgrey","es","es6","iced","iced.md","iced-coffee-script","ini","js","json","json5","jsx","react","litcoffee","liticed","ls","livescript","toml","ts","typescript","wisp","xml","yaml","yml"],"gitHead":"e919561a3671c803cda3fe70880ec311b2f8681f","_id":"interpret@1.0.2","scripts":{},"_shasum":"f4f623f0bb7122f15f5717c8e254b8161b5c5b2d","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.7.3","_npmUser":{"name":"tkellen","email":"tyler@sleekcode.net"},"dist":{"shasum":"f4f623f0bb7122f15f5717c8e254b8161b5c5b2d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/interpret/-/interpret-1.0.2.tgz"},"maintainers":[{"name":"tkellen","email":"tyler@sleekcode.net"},{"name":"phated","email":"blaine@iceddev.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/interpret-1.0.2.tgz_1490789188703_0.9869914392475039"},"directories":{}},"1.0.3":{"name":"interpret","description":"A dictionary of file extensions and associated module loaders.","version":"1.0.3","homepage":"https://github.com/tkellen/node-interpret","author":{"name":"Tyler Kellen","url":"http://goingslowly.com/"},"repository":{"type":"git","url":"git://github.com/tkellen/node-interpret.git"},"bugs":{"url":"https://github.com/tkellen/node-interpret/issues"},"license":"MIT","main":"index.js","keywords":["cirru-script","cjsx","co","coco","coffee-script","coffee","coffee.md","csv","earlgrey","es","es6","iced","iced.md","iced-coffee-script","ini","js","json","json5","jsx","react","litcoffee","liticed","ls","livescript","toml","ts","typescript","wisp","xml","yaml","yml"],"gitHead":"767213bb4a2c75aadddb1439e8a7d0681f30e3af","_id":"interpret@1.0.3","scripts":{},"_shasum":"cbc35c62eeee73f19ab7b10a801511401afc0f90","_from":".","_npmVersion":"2.15.2","_nodeVersion":"0.10.41","_npmUser":{"name":"phated","email":"blaine.bublitz@gmail.com"},"maintainers":[{"name":"tkellen","email":"tyler@sleekcode.net"},{"name":"phated","email":"blaine@iceddev.com"}],"dist":{"shasum":"cbc35c62eeee73f19ab7b10a801511401afc0f90","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/interpret/-/interpret-1.0.3.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/interpret-1.0.3.tgz_1492548493934_0.45664324052631855"},"directories":{}}},"name":"interpret","time":{"modified":"2017-06-05T06:12:57.032Z","created":"2014-03-20T16:54:46.631Z","0.1.0":"2014-03-20T16:54:46.631Z","0.2.0":"2014-03-20T17:53:15.610Z","0.3.0":"2014-03-20T19:03:07.679Z","0.3.1":"2014-05-06T21:39:16.820Z","0.3.2":"2014-05-06T21:40:57.132Z","0.3.3":"2014-06-02T13:26:06.149Z","0.3.4":"2014-06-27T06:45:22.515Z","0.3.5":"2014-07-03T12:47:02.631Z","0.3.6":"2014-08-25T12:26:12.587Z","0.3.7":"2014-09-12T15:10:28.818Z","0.3.8":"2014-11-20T06:26:24.138Z","0.3.9":"2014-12-08T22:09:19.418Z","0.3.10":"2014-12-17T17:40:23.468Z","0.4.0":"2015-01-10T02:33:50.596Z","0.4.1":"2015-01-10T19:03:24.405Z","0.4.2":"2015-01-16T12:57:48.965Z","0.4.3":"2015-02-09T19:30:58.065Z","0.5.0":"2015-02-17T23:16:18.433Z","0.5.1":"2015-03-01T17:14:07.842Z","0.5.2":"2015-03-15T20:37:12.573Z","0.6.0":"2015-05-19T22:04:10.709Z","0.6.1":"2015-05-20T05:20:51.046Z","0.6.2":"2015-05-20T23:27:45.991Z","0.6.3":"2015-07-03T19:23:57.278Z","0.6.4":"2015-07-07T15:02:05.749Z","0.6.5":"2015-07-22T12:58:47.529Z","0.6.6":"2015-09-21T12:24:50.113Z","1.0.0":"2015-11-18T22:40:09.676Z","1.0.1":"2016-05-01T21:54:32.253Z","1.0.2":"2017-03-29T12:06:30.591Z","1.0.3":"2017-04-18T20:48:15.858Z"},"readmeFilename":"README.md","homepage":"https://github.com/tkellen/node-interpret"}