gitextract_myo37vrg/ ├── .gitignore ├── .jshintrc ├── .travis.yml ├── Makefile ├── README.md ├── bin/ │ └── canned ├── example/ │ ├── _search.get.json │ └── comment/ │ ├── _myfunc.get.json │ ├── any.get.json │ ├── any.put.json │ ├── index.get.json │ └── index.post.json ├── index.js ├── lib/ │ ├── canned.js │ ├── lookup.js │ ├── response.js │ └── utils.js ├── package.json ├── spec/ │ ├── canned.spec.js │ ├── lookup.spec.js │ └── test_responses/ │ ├── _201.get.json │ ├── _201_multiple_responses.get.json │ ├── _a.get.html │ ├── _b.get.txt │ ├── _broken_sanitize.get.json │ ├── _chartest.get.json │ ├── _empty.get.json │ ├── _empty_with_headers.get.json │ ├── _invalid_syntax.get.json │ ├── _multimatch.get.json.1 │ ├── _multimatch.get.json.2 │ ├── _multimatch_query_param.get.html │ ├── _multiple_custom_header.get.json │ ├── _multiple_get_responses.get.json │ ├── _multiple_responses.get.json │ ├── _multiple_responses.post.json │ ├── _multiple_responses_text.get.html │ ├── _multiple_responses_text.post.html │ ├── _multiple_responses_xml.post.xml │ ├── _multiple_responses_xml_request_body.post.xml │ ├── _multiple_type.get.csv │ ├── _multiple_type.get.html │ ├── _multiple_type.get.js │ ├── _multiple_type.get.json │ ├── _multiple_type.get.jsonld │ ├── _multiple_type.get.nt │ ├── _multiple_type.get.txt │ ├── _response_with_url_param.post.json │ ├── _single_custom_header.get.json │ ├── _vendor_type.get.xml │ ├── d/ │ │ ├── 2/ │ │ │ └── index.get.json │ │ ├── _commented.get.json │ │ ├── any/ │ │ │ ├── _bar.get.json │ │ │ └── index.get.json │ │ ├── any.get.html │ │ ├── e/ │ │ │ └── index.get.html │ │ ├── index.get.html │ │ └── multiple-accept-types/ │ │ └── index.get.json │ └── index.get.html └── test/ ├── assert.sh └── bin_test.sh