├── .gitignore ├── LICENSE.md ├── README.md ├── animation.gif ├── bundle.js ├── index.js ├── node_modules ├── .bin │ ├── JSONStream │ ├── JSONStream.cmd │ ├── acorn │ ├── acorn.cmd │ ├── browser-pack │ ├── browser-pack.cmd │ ├── browserify │ ├── browserify.cmd │ ├── deps-sort │ ├── deps-sort.cmd │ ├── insert-module-globals │ ├── insert-module-globals.cmd │ ├── miller-rabin │ ├── miller-rabin.cmd │ ├── module-deps │ ├── module-deps.cmd │ ├── sha.js │ ├── sha.js.cmd │ ├── umd │ └── umd.cmd ├── JSONStream │ ├── .npmignore │ ├── .travis.yml │ ├── LICENSE.APACHE2 │ ├── LICENSE.MIT │ ├── examples │ │ └── all_docs.js │ ├── index.js │ ├── package.json │ ├── readme.markdown │ └── test │ │ ├── bool.js │ │ ├── browser.js │ │ ├── destroy_missing.js │ │ ├── disabled │ │ ├── doubledot1.js │ │ └── doubledot2.js │ │ ├── empty.js │ │ ├── error_contents.js │ │ ├── fixtures │ │ ├── all_npm.json │ │ ├── couch_sample.json │ │ ├── depth.json │ │ ├── error.json │ │ └── header_footer.json │ │ ├── fn.js │ │ ├── gen.js │ │ ├── header_footer.js │ │ ├── issues.js │ │ ├── keys.js │ │ ├── map.js │ │ ├── multiple_objects.js │ │ ├── multiple_objects_error.js │ │ ├── null.js │ │ ├── parsejson.js │ │ ├── stringify.js │ │ ├── stringify_object.js │ │ ├── test.js │ │ ├── test2.js │ │ └── two-ways.js ├── acorn │ ├── .editorconfig │ ├── .gitattributes │ ├── .npmignore │ ├── .tern-project │ ├── .travis.yml │ ├── AUTHORS │ ├── LICENSE │ ├── README.md │ ├── bin │ │ ├── acorn │ │ ├── build-acorn.js │ │ ├── generate-identifier-regex.js │ │ ├── prepublish.sh │ │ ├── update_authors.sh │ │ └── without_eval │ ├── dist │ │ ├── .keep │ │ ├── acorn.js │ │ ├── acorn_csp.js │ │ ├── acorn_loose.js │ │ └── walk.js │ ├── package.json │ └── src │ │ ├── expression.js │ │ ├── identifier.js │ │ ├── index.js │ │ ├── location.js │ │ ├── loose │ │ ├── acorn_loose.js │ │ ├── expression.js │ │ ├── index.js │ │ ├── parseutil.js │ │ ├── state.js │ │ ├── statement.js │ │ └── tokenize.js │ │ ├── lval.js │ │ ├── node.js │ │ ├── options.js │ │ ├── parseutil.js │ │ ├── state.js │ │ ├── statement.js │ │ ├── tokencontext.js │ │ ├── tokenize.js │ │ ├── tokentype.js │ │ ├── util.js │ │ ├── walk │ │ └── index.js │ │ └── whitespace.js ├── array-filter │ ├── .npmignore │ ├── .travis.yml │ ├── README.md │ ├── index.js │ ├── package.json │ └── test │ │ ├── filter.js │ │ └── holes.js ├── array-map │ ├── .travis.yml │ ├── LICENSE │ ├── example │ │ └── map.js │ ├── index.js │ ├── package.json │ ├── readme.markdown │ └── test │ │ └── map.js ├── array-reduce │ ├── .travis.yml │ ├── LICENSE │ ├── example │ │ └── sum.js │ ├── index.js │ ├── package.json │ ├── readme.markdown │ └── test │ │ └── reduce.js ├── asn1.js │ ├── .npmignore │ ├── README.md │ ├── lib │ │ ├── asn1.js │ │ └── asn1 │ │ │ ├── api.js │ │ │ ├── base │ │ │ ├── buffer.js │ │ │ ├── index.js │ │ │ ├── node.js │ │ │ └── reporter.js │ │ │ ├── constants │ │ │ ├── der.js │ │ │ └── index.js │ │ │ ├── decoders │ │ │ ├── der.js │ │ │ ├── index.js │ │ │ └── pem.js │ │ │ └── encoders │ │ │ ├── der.js │ │ │ ├── index.js │ │ │ └── pem.js │ ├── package.json │ └── test.js ├── assert │ ├── .npmignore │ ├── .travis.yml │ ├── .zuul.yml │ ├── LICENSE │ ├── README.md │ ├── assert.js │ ├── package.json │ └── test.js ├── astw │ ├── .travis.yml │ ├── LICENSE │ ├── example │ │ └── types.js │ ├── index.js │ ├── package.json │ ├── readme.markdown │ └── test │ │ ├── json.js │ │ └── parent.js ├── balanced-match │ ├── .npmignore │ ├── LICENSE.md │ ├── README.md │ ├── index.js │ └── package.json ├── base64-js │ ├── LICENSE │ ├── README.md │ ├── base64js.min.js │ ├── index.js │ ├── package.json │ └── test │ │ ├── big-data.js │ │ ├── convert.js │ │ └── url-safe.js ├── bn.js │ ├── .npmignore │ ├── .travis.yml │ ├── README.md │ ├── lib │ │ └── bn.js │ ├── package.json │ ├── test │ │ ├── arithmetic-test.js │ │ ├── binary-test.js │ │ ├── constructor-test.js │ │ ├── fixtures.js │ │ ├── pummel │ │ │ └── dh-group-test.js │ │ ├── red-test.js │ │ └── utils-test.js │ └── util │ │ ├── genCombMulTo.js │ │ └── genCombMulTo10.js ├── brace-expansion │ ├── README.md │ ├── index.js │ └── package.json ├── brorand │ ├── .npmignore │ ├── README.md │ ├── index.js │ ├── package.json │ └── test │ │ └── api-test.js ├── browser-pack │ ├── .npmignore │ ├── .travis.yml │ ├── LICENSE │ ├── _prelude.js │ ├── bin │ │ ├── cmd.js │ │ └── prepublish.js │ ├── example │ │ ├── input.json │ │ ├── output.js │ │ └── sourcemap │ │ │ ├── input.json │ │ │ └── output.js │ ├── index.js │ ├── package.json │ ├── prelude.js │ ├── readme.markdown │ └── test │ │ ├── comment.js │ │ ├── empty.js │ │ ├── not_found.js │ │ ├── only_execute_entries.js │ │ ├── order.js │ │ ├── pack.js │ │ ├── raw.js │ │ ├── source-maps-existing.js │ │ ├── source-maps.js │ │ ├── this.js │ │ └── unicode.js ├── browser-resolve │ ├── LICENSE │ ├── empty.js │ ├── index.js │ └── package.json ├── browserify-aes │ ├── .eslintrc │ ├── .npmignore │ ├── .travis.yml │ ├── LICENSE │ ├── aes.js │ ├── authCipher.js │ ├── browser.js │ ├── decrypter.js │ ├── encrypter.js │ ├── ghash.js │ ├── index.js │ ├── modes.js │ ├── modes │ │ ├── cbc.js │ │ ├── cfb.js │ │ ├── cfb1.js │ │ ├── cfb8.js │ │ ├── ctr.js │ │ ├── ecb.js │ │ └── ofb.js │ ├── package.json │ ├── populateFixtures.js │ ├── readme.md │ └── streamCipher.js ├── browserify-cipher │ ├── .travis.yml │ ├── browser.js │ ├── index.js │ ├── package.json │ ├── readme.md │ └── test.js ├── browserify-des │ ├── index.js │ ├── modes.js │ ├── package.json │ ├── readme.md │ └── test.js ├── browserify-rsa │ ├── .travis.yml │ ├── LICENSE │ ├── index.js │ ├── package.json │ ├── readme.md │ └── test.js ├── browserify-sign │ ├── .jshintrc │ ├── .npmignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── algos.js │ ├── algos.json │ ├── browser.js │ ├── curves.js │ ├── ec.param │ ├── index.js │ ├── package.json │ ├── sign.js │ └── verify.js ├── browserify-zlib │ ├── .npmignore │ ├── .travis.yml │ ├── README.md │ ├── package.json │ ├── src │ │ ├── binding.js │ │ └── index.js │ └── test │ │ ├── fixtures │ │ ├── elipses.txt │ │ ├── empty.txt │ │ └── person.jpg │ │ ├── ignored │ │ ├── test-zlib-dictionary-fail.js │ │ ├── test-zlib-dictionary.js │ │ └── test-zlib-params.js │ │ ├── package.json │ │ ├── test-zlib-close-after-write.js │ │ ├── test-zlib-convenience-methods.js │ │ ├── test-zlib-from-string.js │ │ ├── test-zlib-invalid-input.js │ │ ├── test-zlib-random-byte-pipes.js │ │ ├── test-zlib-write-after-flush.js │ │ ├── test-zlib-zero-byte.js │ │ └── test-zlib.js ├── browserify │ ├── .travis.yml │ ├── LICENSE │ ├── bin │ │ ├── advanced.txt │ │ ├── args.js │ │ ├── cmd.js │ │ └── usage.txt │ ├── changelog.markdown │ ├── example │ │ ├── api │ │ │ ├── browser │ │ │ │ ├── bar.js │ │ │ │ ├── foo.js │ │ │ │ └── main.js │ │ │ └── build.js │ │ ├── multiple_bundles │ │ │ ├── beep.js │ │ │ ├── boop.js │ │ │ ├── build.sh │ │ │ ├── robot.js │ │ │ └── static │ │ │ │ ├── beep.html │ │ │ │ └── boop.html │ │ └── source_maps │ │ │ ├── build.js │ │ │ ├── build.sh │ │ │ ├── index.html │ │ │ └── js │ │ │ ├── build │ │ │ ├── .npmignore │ │ │ └── bundle.js │ │ │ ├── foo.js │ │ │ ├── main.js │ │ │ └── wunder │ │ │ └── bar.js │ ├── index.js │ ├── lib │ │ ├── _empty.js │ │ └── builtins.js │ ├── package.json │ ├── readme.markdown │ └── test │ │ ├── args.js │ │ ├── array.js │ │ ├── array │ │ ├── one.js │ │ ├── three.js │ │ └── two.js │ │ ├── backbone.js │ │ ├── bare.js │ │ ├── bare │ │ └── main.js │ │ ├── bare_shebang.js │ │ ├── bin.js │ │ ├── bin_entry.js │ │ ├── bin_tr_error.js │ │ ├── bin_tr_error │ │ ├── main.js │ │ └── tr.js │ │ ├── bom.js │ │ ├── bom │ │ └── hello.js │ │ ├── browser_field_file.js │ │ ├── browser_field_file │ │ ├── package.json │ │ └── wow.js │ │ ├── browser_field_resolve.js │ │ ├── browser_field_resolve │ │ ├── a │ │ │ ├── main.js │ │ │ └── package.json │ │ ├── b │ │ │ ├── main.js │ │ │ ├── package.json │ │ │ └── x.js │ │ ├── c │ │ │ ├── main.js │ │ │ ├── package.json │ │ │ └── x.js │ │ ├── d │ │ │ ├── main.js │ │ │ ├── package.json │ │ │ └── x.js │ │ ├── e │ │ │ ├── main.js │ │ │ ├── package.json │ │ │ └── x.js │ │ ├── f │ │ │ ├── main.js │ │ │ ├── package.json │ │ │ └── x.js │ │ ├── g │ │ │ ├── main.js │ │ │ ├── package.json │ │ │ └── x.js │ │ ├── h │ │ │ ├── main.js │ │ │ ├── package.json │ │ │ └── x.js │ │ ├── i │ │ │ ├── browser.js │ │ │ ├── main.js │ │ │ ├── package.json │ │ │ └── x.js │ │ ├── j │ │ │ ├── browser.js │ │ │ ├── main.js │ │ │ ├── package.json │ │ │ └── x.js │ │ ├── k │ │ │ ├── main.js │ │ │ └── node_modules │ │ │ │ └── x │ │ │ │ ├── hey.js │ │ │ │ └── package.json │ │ └── l │ │ │ ├── main.js │ │ │ └── node_modules │ │ │ └── x │ │ │ ├── hey.js │ │ │ └── package.json │ │ ├── buffer.js │ │ ├── bundle-bundle-external.js │ │ ├── bundle-bundle-external │ │ ├── bar.js │ │ ├── baz.js │ │ └── foo.js │ │ ├── bundle-stream.js │ │ ├── bundle.js │ │ ├── bundle_external.js │ │ ├── bundle_external │ │ ├── boop.js │ │ ├── main.js │ │ └── robot.js │ │ ├── bundle_external_global.js │ │ ├── bundle_sourcemap.js │ │ ├── catch.js │ │ ├── catch │ │ └── main.js │ │ ├── circular.js │ │ ├── circular │ │ ├── a.js │ │ ├── b.js │ │ └── main.js │ │ ├── coffee_bin.js │ │ ├── coffee_bin │ │ ├── main.coffee │ │ └── x.coffee │ │ ├── coffeeify.js │ │ ├── coffeeify │ │ └── main.coffee │ │ ├── comment.js │ │ ├── comment │ │ └── main.js │ │ ├── constants.js │ │ ├── crypto.js │ │ ├── crypto_ig.js │ │ ├── cycle.js │ │ ├── cycle │ │ ├── README.md │ │ ├── entry.js │ │ ├── mod1 │ │ │ ├── a.js │ │ │ └── b.js │ │ └── mod2 │ │ │ ├── a.js │ │ │ └── b.js │ │ ├── debug_standalone.js │ │ ├── debug_standalone │ │ └── x.js │ │ ├── dedupe-deps.js │ │ ├── dedupe-nomap.js │ │ ├── delay.js │ │ ├── delay │ │ ├── diverted.js │ │ └── main.js │ │ ├── dep.js │ │ ├── dollar.js │ │ ├── dollar │ │ └── dollar │ │ │ └── index.js │ │ ├── double_buffer.js │ │ ├── double_buffer │ │ ├── explicit.js │ │ ├── implicit.js │ │ └── main.js │ │ ├── double_bundle.js │ │ ├── double_bundle_error.js │ │ ├── double_bundle_error │ │ ├── main.js │ │ ├── needs_three.js │ │ ├── one.js │ │ ├── package.json │ │ ├── three.js │ │ └── two.js │ │ ├── double_bundle_json.js │ │ ├── double_bundle_json │ │ ├── a.json │ │ ├── b.json │ │ └── index.js │ │ ├── double_bundle_parallel.js │ │ ├── double_bundle_parallel_cache.js │ │ ├── dup │ │ ├── foo-dup.js │ │ ├── foo.js │ │ └── index.js │ │ ├── entry.js │ │ ├── entry │ │ ├── main.js │ │ ├── needs_three.js │ │ ├── one.js │ │ ├── package.json │ │ ├── three.js │ │ └── two.js │ │ ├── entry_exec.js │ │ ├── entry_exec │ │ ├── fail.js │ │ └── main.js │ │ ├── entry_expose.js │ │ ├── entry_expose │ │ └── main.js │ │ ├── entry_relative.js │ │ ├── error_code.js │ │ ├── error_code │ │ └── src.js │ │ ├── export.js │ │ ├── export │ │ └── entry.js │ │ ├── external.js │ │ ├── external │ │ ├── main.js │ │ └── x.js │ │ ├── external_args │ │ └── main.js │ │ ├── external_shim.js │ │ ├── external_shim │ │ ├── bundle1.js │ │ ├── bundle2.js │ │ ├── package.json │ │ └── shim.js │ │ ├── externalize.js │ │ ├── externalize │ │ ├── beep.js │ │ ├── boop.js │ │ └── robot.js │ │ ├── fake.js │ │ ├── fake │ │ ├── fake_fs.js │ │ └── main.js │ │ ├── field.js │ │ ├── field │ │ ├── miss.js │ │ ├── node_modules │ │ │ ├── z-miss │ │ │ │ ├── browser.js │ │ │ │ ├── main.js │ │ │ │ └── package.json │ │ │ ├── z-object │ │ │ │ ├── browser.js │ │ │ │ ├── main.js │ │ │ │ └── package.json │ │ │ ├── z-string │ │ │ │ ├── browser.js │ │ │ │ ├── main.js │ │ │ │ └── package.json │ │ │ └── z-sub │ │ │ │ ├── browser │ │ │ │ ├── a.js │ │ │ │ └── b.js │ │ │ │ ├── main.js │ │ │ │ └── package.json │ │ ├── object.js │ │ ├── string.js │ │ └── sub.js │ │ ├── file_event.js │ │ ├── five_bundle.js │ │ ├── full_paths.js │ │ ├── glob.js │ │ ├── glob │ │ ├── a.js │ │ ├── b.js │ │ ├── lib │ │ │ └── z.js │ │ └── vendor │ │ │ ├── x.js │ │ │ └── y.js │ │ ├── global.js │ │ ├── global │ │ ├── buffer.js │ │ ├── filename.js │ │ ├── main.js │ │ ├── node_modules │ │ │ ├── aaa │ │ │ │ └── index.js │ │ │ └── robot │ │ │ │ ├── index.js │ │ │ │ └── lib │ │ │ │ └── beep.js │ │ └── tick.js │ │ ├── global_coffeeify.js │ │ ├── global_noparse.js │ │ ├── global_recorder.js │ │ ├── global_recorder │ │ └── main.js │ │ ├── hash.js │ │ ├── hash │ │ ├── foo │ │ │ ├── other.js │ │ │ └── two.js │ │ ├── main.js │ │ ├── one.js │ │ └── other.js │ │ ├── hash_instance_context.js │ │ ├── hash_instance_context │ │ ├── main.js │ │ ├── one │ │ │ ├── dir │ │ │ │ ├── f.js │ │ │ │ └── g.js │ │ │ ├── f.js │ │ │ └── g.js │ │ ├── three │ │ │ ├── dir │ │ │ │ ├── f.js │ │ │ │ ├── g.js │ │ │ │ └── h.js │ │ │ ├── f.js │ │ │ ├── g.js │ │ │ └── h.js │ │ └── two │ │ │ ├── dir │ │ │ ├── f.js │ │ │ ├── g.js │ │ │ └── h.js │ │ │ ├── f.js │ │ │ ├── g.js │ │ │ └── h.js │ │ ├── identical.js │ │ ├── identical │ │ ├── main.js │ │ ├── x.js │ │ └── y.js │ │ ├── identical_different.js │ │ ├── identical_different │ │ ├── main.js │ │ ├── node_modules │ │ │ └── op │ │ │ │ └── index.js │ │ ├── wow │ │ │ ├── node_modules │ │ │ │ └── op │ │ │ │ │ └── index.js │ │ │ └── y.js │ │ └── x.js │ │ ├── ignore.js │ │ ├── ignore │ │ ├── by-id.js │ │ ├── by-relative.js │ │ ├── double-skip.js │ │ ├── double-skip │ │ │ ├── index.js │ │ │ └── skip.js │ │ ├── ignored │ │ │ └── skip.js │ │ ├── main.js │ │ ├── relative │ │ │ └── index.js │ │ └── skip.js │ │ ├── ignore_browser_field.js │ │ ├── ignore_browser_field │ │ ├── main.js │ │ └── node_modules │ │ │ ├── a │ │ │ ├── browser.js │ │ │ ├── main.js │ │ │ └── package.json │ │ │ └── b │ │ │ ├── browser-x.js │ │ │ ├── main.js │ │ │ ├── package.json │ │ │ └── x.js │ │ ├── ignore_missing.js │ │ ├── ignore_missing │ │ └── main.js │ │ ├── json.js │ │ ├── json │ │ ├── beep.json │ │ ├── evil-chars.json │ │ ├── evil.js │ │ └── main.js │ │ ├── leak.js │ │ ├── maxlisteners.js │ │ ├── maxlisteners │ │ └── main.js │ │ ├── multi_bundle.js │ │ ├── multi_bundle │ │ ├── _prelude.js │ │ ├── a.js │ │ ├── b.js │ │ └── c.js │ │ ├── multi_bundle_unique.js │ │ ├── multi_entry.js │ │ ├── multi_entry │ │ ├── a.js │ │ ├── b.js │ │ └── c.js │ │ ├── multi_entry_cross_require.js │ │ ├── multi_entry_cross_require │ │ ├── a.js │ │ ├── c.js │ │ └── lib │ │ │ └── b.js │ │ ├── multi_require.js │ │ ├── multi_require │ │ ├── a.js │ │ └── main.js │ │ ├── multi_symlink.js │ │ ├── multi_symlink │ │ ├── main.js │ │ └── x.js │ │ ├── no_builtins.js │ │ ├── no_builtins │ │ ├── extra │ │ │ ├── fs.js │ │ │ └── tls.js │ │ ├── main.js │ │ └── x.txt │ │ ├── node_modules │ │ ├── beep │ │ │ └── index.js │ │ ├── plugin-foo │ │ │ └── index.js │ │ └── tr │ │ │ └── index.js │ │ ├── noparse.js │ │ ├── noparse │ │ ├── a.js │ │ ├── b.js │ │ ├── dir1 │ │ │ ├── 1.js │ │ │ └── dir2 │ │ │ │ └── 2.js │ │ └── node_modules │ │ │ └── robot │ │ │ ├── lib │ │ │ ├── beep.js │ │ │ └── boop.js │ │ │ ├── main.js │ │ │ └── package.json │ │ ├── pack.js │ │ ├── paths.js │ │ ├── paths │ │ ├── main.js │ │ ├── x │ │ │ ├── aaa │ │ │ │ └── index.js │ │ │ └── ccc │ │ │ │ └── index.js │ │ └── y │ │ │ ├── bbb │ │ │ └── index.js │ │ │ └── ccc │ │ │ └── index.js │ │ ├── paths_transform.js │ │ ├── pipeline_deps.js │ │ ├── pipeline_deps │ │ ├── bar.js │ │ ├── foo.js │ │ ├── main.js │ │ └── xyz.js │ │ ├── pkg.js │ │ ├── pkg │ │ ├── main.js │ │ └── package.json │ │ ├── pkg_event.js │ │ ├── pkg_event │ │ ├── main.js │ │ └── package.json │ │ ├── plugin.js │ │ ├── plugin │ │ └── main.js │ │ ├── process.js │ │ ├── process │ │ ├── main.js │ │ ├── one.js │ │ └── two.js │ │ ├── relative_dedupe.js │ │ ├── relative_dedupe │ │ ├── a │ │ │ ├── a.js │ │ │ ├── b.js │ │ │ └── index.js │ │ ├── b │ │ │ ├── a.js │ │ │ ├── b.js │ │ │ └── index.js │ │ ├── index.js │ │ └── main.js │ │ ├── require_cache.js │ │ ├── require_expose.js │ │ ├── require_expose │ │ ├── main.js │ │ └── some_dep.js │ │ ├── reset.js │ │ ├── resolve_exposed.js │ │ ├── resolve_exposed │ │ ├── main.js │ │ └── x.js │ │ ├── retarget.js │ │ ├── reverse_multi_bundle.js │ │ ├── reverse_multi_bundle │ │ ├── app.js │ │ ├── arbitrary.js │ │ ├── lazy.js │ │ └── shared.js │ │ ├── shared_symlink.js │ │ ├── shared_symlink │ │ ├── app │ │ │ ├── index.js │ │ │ └── node_modules │ │ │ │ └── foo │ │ │ │ └── index.js │ │ ├── main.js │ │ └── shared │ │ │ └── index.js │ │ ├── shebang.js │ │ ├── shebang │ │ ├── foo.js │ │ └── main.js │ │ ├── standalone.js │ │ ├── standalone │ │ ├── main.js │ │ ├── one.js │ │ └── two.js │ │ ├── standalone_events.js │ │ ├── standalone_sourcemap.js │ │ ├── stdin.js │ │ ├── stream.js │ │ ├── stream │ │ ├── bar.js │ │ ├── foo.js │ │ └── main.js │ │ ├── stream_file.js │ │ ├── subdep.js │ │ ├── subdep │ │ ├── index.js │ │ └── package.json │ │ ├── symlink_dedupe.js │ │ ├── symlink_dedupe │ │ ├── main.js │ │ └── one │ │ │ ├── f.js │ │ │ └── g.js │ │ ├── syntax_cache.js │ │ ├── syntax_cache │ │ ├── invalid.js │ │ └── valid.js │ │ ├── tr.js │ │ ├── tr │ │ ├── f.js │ │ ├── main.js │ │ ├── package.json │ │ └── subdir │ │ │ └── g.js │ │ ├── tr_args.js │ │ ├── tr_args │ │ ├── main.js │ │ └── tr.js │ │ ├── tr_error.js │ │ ├── tr_flags.js │ │ ├── tr_global.js │ │ ├── tr_global │ │ ├── main.js │ │ └── node_modules │ │ │ ├── tr │ │ │ └── index.js │ │ │ └── x │ │ │ ├── index.js │ │ │ └── node_modules │ │ │ └── tr │ │ │ └── index.js │ │ ├── tr_no_entry.js │ │ ├── tr_no_entry │ │ └── main.js │ │ ├── tr_once.js │ │ ├── tr_once │ │ └── main.js │ │ ├── tr_order.js │ │ ├── tr_order │ │ ├── replace_aaa.js │ │ └── replace_bbb.js │ │ ├── tr_symlink.js │ │ ├── tr_symlink │ │ ├── a-module │ │ │ └── index.js │ │ ├── app │ │ │ ├── main.js │ │ │ └── package.json │ │ └── b-module │ │ │ ├── ext.js │ │ │ └── index.js │ │ ├── unicode.js │ │ ├── unicode │ │ ├── main.js │ │ ├── one.js │ │ └── two.js │ │ ├── util.js │ │ ├── yield.js │ │ └── yield │ │ ├── f.js │ │ └── main.js ├── buffer-shims │ ├── index.js │ ├── license.md │ ├── package.json │ └── readme.md ├── buffer-xor │ ├── .npmignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── index.js │ ├── inline.js │ ├── inplace.js │ ├── package.json │ └── test │ │ ├── fixtures.json │ │ └── index.js ├── buffer │ ├── .npmignore │ ├── .travis.yml │ ├── AUTHORS.md │ ├── LICENSE │ ├── README.md │ ├── bin │ │ ├── download-node-tests.js │ │ ├── test.js │ │ ├── update-authors.sh │ │ ├── zuul-es5.yml │ │ └── zuul-es6.yml │ ├── index.js │ ├── package.json │ └── test │ │ ├── _polyfill.js │ │ ├── base64.js │ │ ├── basic.js │ │ ├── compare.js │ │ ├── constructor.js │ │ ├── from-string.js │ │ ├── is-buffer.js │ │ ├── methods.js │ │ ├── node │ │ ├── test-buffer-alloc.js │ │ ├── test-buffer-arraybuffer.js │ │ ├── test-buffer-ascii.js │ │ ├── test-buffer-bad-overload.js │ │ ├── test-buffer-badhex.js │ │ ├── test-buffer-bytelength.js │ │ ├── test-buffer-compare-offset.js │ │ ├── test-buffer-concat.js │ │ ├── test-buffer-fill.js │ │ ├── test-buffer-includes.js │ │ ├── test-buffer-indexof.js │ │ ├── test-buffer-inheritance.js │ │ ├── test-buffer-inspect.js │ │ ├── test-buffer-iterator.js │ │ ├── test-buffer-safe-unsafe.js │ │ ├── test-buffer-slow.js │ │ ├── test-buffer-swap.js │ │ ├── test-buffer-zero-fill-cli.js │ │ ├── test-buffer-zero-fill-reset.js │ │ └── test-buffer.js │ │ ├── slice.js │ │ ├── static.js │ │ ├── to-string.js │ │ ├── write.js │ │ └── write_infinity.js ├── builtin-status-codes │ ├── browser.js │ ├── build.js │ ├── index.js │ ├── license │ ├── package.json │ └── readme.md ├── cipher-base │ ├── .eslintrc │ ├── .travis.yml │ ├── index.js │ ├── package.json │ ├── readme.md │ └── test.js ├── combine-source-map │ ├── .npmignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── example │ │ ├── two-files-short.js │ │ └── two-files.js │ ├── index.js │ ├── lib │ │ ├── mappings-from-map.js │ │ ├── path-is-absolute.js │ │ └── path-is-absolute.license │ ├── package.json │ └── test │ │ └── combine-source-map.js ├── concat-map │ ├── .travis.yml │ ├── LICENSE │ ├── README.markdown │ ├── example │ │ └── map.js │ ├── index.js │ ├── package.json │ └── test │ │ └── map.js ├── concat-stream │ ├── LICENSE │ ├── index.js │ ├── node_modules │ │ └── readable-stream │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── .zuul.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc │ │ │ ├── stream.markdown │ │ │ └── wg-meetings │ │ │ │ └── 2015-01-30.md │ │ │ ├── duplex.js │ │ │ ├── lib │ │ │ ├── _stream_duplex.js │ │ │ ├── _stream_passthrough.js │ │ │ ├── _stream_readable.js │ │ │ ├── _stream_transform.js │ │ │ └── _stream_writable.js │ │ │ ├── package.json │ │ │ ├── passthrough.js │ │ │ ├── readable.js │ │ │ ├── transform.js │ │ │ └── writable.js │ ├── package.json │ └── readme.md ├── console-browserify │ ├── .npmignore │ ├── .testem.json │ ├── .travis.yml │ ├── LICENCE │ ├── README.md │ ├── index.js │ ├── package.json │ └── test │ │ ├── index.js │ │ └── static │ │ ├── index.html │ │ └── test-adapter.js ├── constants-browserify │ ├── README.md │ ├── build.sh │ ├── constants.json │ ├── package.json │ └── test.js ├── convert-source-map │ ├── .npmignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── example │ │ └── comment-to-json.js │ ├── index.js │ ├── package.json │ └── test │ │ ├── comment-regex.js │ │ ├── convert-source-map.js │ │ ├── fixtures │ │ ├── map-file-comment-double-slash.css │ │ ├── map-file-comment-inline.css │ │ ├── map-file-comment.css │ │ └── map-file-comment.css.map │ │ └── map-file-comment.js ├── core-util-is │ ├── LICENSE │ ├── README.md │ ├── float.patch │ ├── lib │ │ └── util.js │ ├── package.json │ └── test.js ├── create-ecdh │ ├── .npmignore │ ├── .travis.yml │ ├── browser.js │ ├── index.js │ ├── package.json │ └── readme.md ├── create-hash │ ├── .npmignore │ ├── .travis.yml │ ├── browser.js │ ├── helpers.js │ ├── index.js │ ├── md5.js │ ├── package.json │ ├── readme.md │ └── test.js ├── create-hmac │ ├── .travis.yml │ ├── browser.js │ ├── index.js │ ├── package.json │ ├── readme.md │ └── test.js ├── crypto-browserify │ ├── .npmignore │ ├── .travis.yml │ ├── .zuul.yml │ ├── LICENSE │ ├── README.md │ ├── example │ │ ├── bundle.js │ │ ├── index.html │ │ └── test.js │ ├── index.js │ ├── package.json │ └── test │ │ ├── aes.js │ │ ├── create-hash.js │ │ ├── create-hmac.js │ │ ├── dh.js │ │ ├── ecdh.js │ │ ├── index.js │ │ ├── node │ │ └── dh.js │ │ ├── pbkdf2.js │ │ ├── public-encrypt.js │ │ ├── random-bytes.js │ │ └── sign.js ├── date-now │ ├── .npmignore │ ├── .testem.json │ ├── .travis.yml │ ├── LICENCE │ ├── README.md │ ├── index.js │ ├── package.json │ ├── seed.js │ └── test │ │ ├── index.js │ │ └── static │ │ └── index.html ├── defined │ ├── .travis.yml │ ├── LICENSE │ ├── example │ │ └── defined.js │ ├── index.js │ ├── package.json │ ├── readme.markdown │ └── test │ │ ├── def.js │ │ └── falsy.js ├── deps-sort │ ├── .travis.yml │ ├── LICENSE │ ├── bin │ │ └── cmd.js │ ├── example │ │ └── sort.js │ ├── index.js │ ├── package.json │ ├── readme.markdown │ └── test │ │ ├── dedupe-deps-of-deps.js │ │ ├── dedupe.js │ │ ├── dedupe_index.js │ │ ├── dedupe_undef.js │ │ ├── expose.js │ │ ├── expose_str.js │ │ ├── indexed.js │ │ └── sort.js ├── des.js │ ├── .jscsrc │ ├── .jshintrc │ ├── .npmignore │ ├── README.md │ ├── lib │ │ ├── des.js │ │ └── des │ │ │ ├── cbc.js │ │ │ ├── cipher.js │ │ │ ├── des.js │ │ │ ├── ede.js │ │ │ └── utils.js │ ├── package.json │ └── test │ │ ├── cbc-test.js │ │ ├── des-test.js │ │ ├── ede-test.js │ │ ├── fixtures.js │ │ └── utils-test.js ├── detective │ ├── .npmignore │ ├── .travis.yml │ ├── LICENSE │ ├── bench │ │ ├── detect.js │ │ └── esprima_v_acorn.txt │ ├── example │ │ ├── strings.js │ │ └── strings_src.js │ ├── index.js │ ├── package.json │ ├── readme.markdown │ └── test │ │ ├── both.js │ │ ├── chained.js │ │ ├── complicated.js │ │ ├── es6-module.js │ │ ├── files │ │ ├── both.js │ │ ├── chained.js │ │ ├── es6-module.js │ │ ├── generators.js │ │ ├── isrequire.js │ │ ├── nested.js │ │ ├── shebang.js │ │ ├── sparse-array.js │ │ ├── strings.js │ │ ├── word.js │ │ └── yield.js │ │ ├── generators.js │ │ ├── isrequire.js │ │ ├── nested.js │ │ ├── noargs.js │ │ ├── parseopts.js │ │ ├── return.js │ │ ├── shebang.js │ │ ├── sparse-array.js │ │ ├── strings.js │ │ ├── word.js │ │ └── yield.js ├── diffie-hellman │ ├── .npmignore │ ├── .travis.yml │ ├── browser.js │ ├── index.js │ ├── lib │ │ ├── dh.js │ │ ├── generatePrime.js │ │ └── primes.json │ ├── package.json │ └── readme.md ├── domain-browser │ ├── .eslintrc.js │ ├── .npmignore │ ├── HISTORY.md │ ├── LICENSE.md │ ├── README.md │ ├── index.js │ ├── package.json │ └── test.js ├── duplexer2 │ ├── LICENSE.md │ ├── README.md │ ├── index.js │ └── package.json ├── elliptic │ ├── README.md │ ├── lib │ │ ├── elliptic.js │ │ └── elliptic │ │ │ ├── curve │ │ │ ├── base.js │ │ │ ├── edwards.js │ │ │ ├── index.js │ │ │ ├── mont.js │ │ │ └── short.js │ │ │ ├── curves.js │ │ │ ├── ec │ │ │ ├── index.js │ │ │ ├── key.js │ │ │ └── signature.js │ │ │ ├── eddsa │ │ │ ├── index.js │ │ │ ├── key.js │ │ │ └── signature.js │ │ │ ├── hmac-drbg.js │ │ │ ├── precomputed │ │ │ └── secp256k1.js │ │ │ └── utils.js │ └── package.json ├── events │ ├── .npmignore │ ├── .travis.yml │ ├── .zuul.yml │ ├── History.md │ ├── LICENSE │ ├── Readme.md │ ├── events.js │ ├── package.json │ └── tests │ │ ├── add-listeners.js │ │ ├── check-listener-leaks.js │ │ ├── common.js │ │ ├── index.js │ │ ├── legacy-compat.js │ │ ├── listener-count.js │ │ ├── listeners-side-effects.js │ │ ├── listeners.js │ │ ├── max-listeners.js │ │ ├── modify-in-emit.js │ │ ├── num-args.js │ │ ├── once.js │ │ ├── remove-all-listeners.js │ │ ├── remove-listeners.js │ │ ├── set-max-listeners-side-effects.js │ │ └── subclass.js ├── evp_bytestokey │ ├── index.js │ ├── package.json │ ├── readme.md │ └── test.js ├── function-bind │ ├── .eslintrc │ ├── .jscs.json │ ├── .npmignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── implementation.js │ ├── index.js │ ├── package.json │ └── test │ │ └── index.js ├── glob │ ├── LICENSE │ ├── README.md │ ├── common.js │ ├── glob.js │ ├── package.json │ └── sync.js ├── has │ ├── .jshintrc │ ├── .npmignore │ ├── LICENSE-MIT │ ├── README.mkd │ ├── package.json │ ├── src │ │ └── index.js │ └── test │ │ ├── .jshintrc │ │ └── index.js ├── hash.js │ ├── .npmignore │ ├── .travis.yml │ ├── README.md │ ├── lib │ │ ├── hash.js │ │ └── hash │ │ │ ├── common.js │ │ │ ├── hmac.js │ │ │ ├── ripemd.js │ │ │ ├── sha.js │ │ │ └── utils.js │ ├── package.json │ └── test │ │ ├── hash-test.js │ │ └── hmac-test.js ├── htmlescape │ ├── .npmignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── htmlescape.js │ └── package.json ├── https-browserify │ ├── LICENSE │ ├── index.js │ ├── package.json │ └── readme.markdown ├── ieee754 │ ├── .travis.yml │ ├── .zuul.yml │ ├── LICENSE │ ├── README.md │ ├── index.js │ ├── package.json │ └── test │ │ └── basic.js ├── indexof │ ├── .npmignore │ ├── Makefile │ ├── Readme.md │ ├── component.json │ ├── index.js │ └── package.json ├── inflight │ ├── LICENSE │ ├── README.md │ ├── inflight.js │ └── package.json ├── inherits │ ├── LICENSE │ ├── README.md │ ├── inherits.js │ ├── inherits_browser.js │ └── package.json ├── inline-source-map │ ├── .npmignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── example │ │ └── foo-bar.js │ ├── index.js │ ├── package.json │ └── test │ │ ├── inline-source-map.js │ │ └── source-content.js ├── insert-module-globals │ ├── .travis.yml │ ├── LICENSE │ ├── bench │ │ ├── results.txt │ │ └── run.sh │ ├── bin │ │ └── cmd.js │ ├── example │ │ ├── files │ │ │ ├── foo │ │ │ │ └── index.js │ │ │ └── main.js │ │ └── insert.js │ ├── index.js │ ├── package.json │ ├── readme.markdown │ └── test │ │ ├── always.js │ │ ├── always │ │ ├── custom_globals_without_defaults.js │ │ ├── hidden_from_quick_test.js │ │ └── main.js │ │ ├── global.js │ │ ├── global │ │ ├── filename.js │ │ └── main.js │ │ ├── insert.js │ │ ├── insert │ │ ├── buffer.js │ │ ├── foo │ │ │ ├── buf.js │ │ │ └── index.js │ │ └── main.js │ │ ├── isbuffer.js │ │ ├── isbuffer │ │ └── main.js │ │ ├── return.js │ │ ├── return │ │ ├── foo │ │ │ └── index.js │ │ └── main.js │ │ ├── sourcemap.js │ │ ├── sourcemap │ │ ├── main.js │ │ └── main_es6.js │ │ ├── unprefix.js │ │ └── unprefix │ │ ├── hello.js │ │ └── main.js ├── is-buffer │ ├── .travis.yml │ ├── .zuul.yml │ ├── LICENSE │ ├── README.md │ ├── index.js │ ├── package.json │ └── test │ │ └── basic.js ├── isarray │ ├── .npmignore │ ├── .travis.yml │ ├── Makefile │ ├── README.md │ ├── component.json │ ├── index.js │ ├── package.json │ └── test.js ├── jquery │ ├── AUTHORS.txt │ ├── LICENSE.txt │ ├── README.md │ ├── bower.json │ ├── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map │ ├── external │ │ └── sizzle │ │ │ ├── LICENSE.txt │ │ │ └── dist │ │ │ ├── sizzle.js │ │ │ ├── sizzle.min.js │ │ │ └── sizzle.min.map │ ├── package.json │ └── src │ │ ├── .jshintrc │ │ ├── ajax.js │ │ ├── ajax │ │ ├── jsonp.js │ │ ├── load.js │ │ ├── parseJSON.js │ │ ├── parseXML.js │ │ ├── script.js │ │ ├── var │ │ │ ├── location.js │ │ │ ├── nonce.js │ │ │ └── rquery.js │ │ └── xhr.js │ │ ├── attributes.js │ │ ├── attributes │ │ ├── attr.js │ │ ├── classes.js │ │ ├── prop.js │ │ ├── support.js │ │ └── val.js │ │ ├── callbacks.js │ │ ├── core.js │ │ ├── core │ │ ├── access.js │ │ ├── init.js │ │ ├── parseHTML.js │ │ ├── ready.js │ │ └── var │ │ │ └── rsingleTag.js │ │ ├── css.js │ │ ├── css │ │ ├── addGetHookIf.js │ │ ├── adjustCSS.js │ │ ├── curCSS.js │ │ ├── defaultDisplay.js │ │ ├── hiddenVisibleSelectors.js │ │ ├── showHide.js │ │ ├── support.js │ │ └── var │ │ │ ├── cssExpand.js │ │ │ ├── getStyles.js │ │ │ ├── isHidden.js │ │ │ ├── rmargin.js │ │ │ ├── rnumnonpx.js │ │ │ └── swap.js │ │ ├── data.js │ │ ├── data │ │ ├── Data.js │ │ └── var │ │ │ ├── acceptData.js │ │ │ ├── dataPriv.js │ │ │ └── dataUser.js │ │ ├── deferred.js │ │ ├── deprecated.js │ │ ├── dimensions.js │ │ ├── effects.js │ │ ├── effects │ │ ├── Tween.js │ │ └── animatedSelector.js │ │ ├── event.js │ │ ├── event │ │ ├── ajax.js │ │ ├── alias.js │ │ ├── focusin.js │ │ ├── support.js │ │ └── trigger.js │ │ ├── exports │ │ ├── amd.js │ │ └── global.js │ │ ├── intro.js │ │ ├── jquery.js │ │ ├── manipulation.js │ │ ├── manipulation │ │ ├── _evalUrl.js │ │ ├── buildFragment.js │ │ ├── getAll.js │ │ ├── setGlobalEval.js │ │ ├── support.js │ │ ├── var │ │ │ ├── rcheckableType.js │ │ │ ├── rscriptType.js │ │ │ └── rtagName.js │ │ └── wrapMap.js │ │ ├── offset.js │ │ ├── outro.js │ │ ├── queue.js │ │ ├── queue │ │ └── delay.js │ │ ├── selector-native.js │ │ ├── selector-sizzle.js │ │ ├── selector.js │ │ ├── serialize.js │ │ ├── traversing.js │ │ ├── traversing │ │ ├── findFilter.js │ │ └── var │ │ │ ├── dir.js │ │ │ ├── rneedsContext.js │ │ │ └── siblings.js │ │ ├── var │ │ ├── arr.js │ │ ├── class2type.js │ │ ├── concat.js │ │ ├── document.js │ │ ├── documentElement.js │ │ ├── hasOwn.js │ │ ├── indexOf.js │ │ ├── pnum.js │ │ ├── push.js │ │ ├── rcssNum.js │ │ ├── rnotwhite.js │ │ ├── slice.js │ │ ├── support.js │ │ └── toString.js │ │ └── wrap.js ├── json-stable-stringify │ ├── .travis.yml │ ├── LICENSE │ ├── example │ │ ├── key_cmp.js │ │ ├── nested.js │ │ ├── str.js │ │ └── value_cmp.js │ ├── index.js │ ├── package.json │ ├── readme.markdown │ └── test │ │ ├── cmp.js │ │ ├── nested.js │ │ └── str.js ├── jsonify │ ├── README.markdown │ ├── index.js │ ├── lib │ │ ├── parse.js │ │ └── stringify.js │ ├── package.json │ └── test │ │ ├── parse.js │ │ └── stringify.js ├── jsonparse │ ├── .npmignore │ ├── LICENSE │ ├── README.markdown │ ├── bench.js │ ├── examples │ │ └── twitterfeed.js │ ├── jsonparse.js │ ├── package.json │ ├── samplejson │ │ ├── basic.json │ │ └── basic2.json │ └── test │ │ ├── boundary.js │ │ ├── offset.js │ │ ├── primitives.js │ │ ├── unvalid.js │ │ └── utf8.js ├── labeled-stream-splicer │ ├── .travis.yml │ ├── LICENSE │ ├── example │ │ ├── browser │ │ │ ├── bar.js │ │ │ ├── foo.js │ │ │ ├── main.js │ │ │ └── xyz.js │ │ └── bundle.js │ ├── index.js │ ├── node_modules │ │ └── isarray │ │ │ ├── README.md │ │ │ ├── build │ │ │ └── build.js │ │ │ ├── component.json │ │ │ ├── index.js │ │ │ └── package.json │ ├── package.json │ ├── readme.markdown │ └── test │ │ ├── bundle.js │ │ └── bundle │ │ ├── bar.js │ │ ├── foo.js │ │ ├── main.js │ │ └── xyz.js ├── lexical-scope │ ├── .travis.yml │ ├── LICENSE │ ├── bench │ │ ├── jquery.js │ │ ├── results.txt │ │ └── run.js │ ├── example │ │ ├── detect.js │ │ └── src.js │ ├── index.js │ ├── package.json │ ├── readme.markdown │ └── test │ │ ├── argument.js │ │ ├── assign_implicit.js │ │ ├── detect.js │ │ ├── files │ │ ├── argument.js │ │ ├── assign_implicit.js │ │ ├── buffer_call.js │ │ ├── buffer_isbuffer.js │ │ ├── buffer_var.js │ │ ├── detect.js │ │ ├── labels.js │ │ ├── multiple-exports.js │ │ ├── named_arg.js │ │ ├── obj.js │ │ ├── return_hash.js │ │ ├── right_hand.js │ │ └── try_catch.js │ │ ├── labels.js │ │ ├── multiple-exports.js │ │ ├── named_arg.js │ │ ├── obj.js │ │ ├── package.json │ │ ├── props.js │ │ ├── return_hash.js │ │ ├── right_hand.js │ │ ├── shebang.js │ │ └── try_catch.js ├── lodash.memoize │ ├── LICENSE.txt │ ├── README.md │ ├── index.js │ └── package.json ├── miller-rabin │ ├── .npmignore │ ├── README.md │ ├── bin │ │ └── miller-rabin │ ├── lib │ │ └── mr.js │ ├── package.json │ └── test │ │ └── api-test.js ├── minimalistic-assert │ ├── index.js │ ├── package.json │ └── readme.md ├── minimatch │ ├── LICENSE │ ├── README.md │ ├── minimatch.js │ └── package.json ├── minimist │ ├── .travis.yml │ ├── LICENSE │ ├── example │ │ └── parse.js │ ├── index.js │ ├── package.json │ ├── readme.markdown │ └── test │ │ ├── all_bool.js │ │ ├── bool.js │ │ ├── dash.js │ │ ├── default_bool.js │ │ ├── dotted.js │ │ ├── kv_short.js │ │ ├── long.js │ │ ├── num.js │ │ ├── parse.js │ │ ├── parse_modified.js │ │ ├── short.js │ │ ├── stop_early.js │ │ ├── unknown.js │ │ └── whitespace.js ├── module-deps │ ├── .travis.yml │ ├── LICENSE │ ├── bin │ │ ├── cmd.js │ │ └── usage.txt │ ├── example │ │ ├── deps.js │ │ └── files │ │ │ ├── bar.js │ │ │ ├── foo.js │ │ │ ├── main.js │ │ │ └── xyz.js │ ├── index.js │ ├── package.json │ ├── readme.markdown │ └── test │ │ ├── bundle.js │ │ ├── cache.js │ │ ├── cache_expose.js │ │ ├── cache_partial.js │ │ ├── cache_partial_expose.js │ │ ├── cycle.js │ │ ├── cycle │ │ ├── bar.js │ │ ├── foo.js │ │ └── main.js │ │ ├── deps.js │ │ ├── dotdot.js │ │ ├── dotdot │ │ ├── abc │ │ │ └── index.js │ │ └── index.js │ │ ├── expose.js │ │ ├── expose │ │ ├── bar.js │ │ ├── foo.js │ │ ├── lib │ │ │ ├── abc.js │ │ │ └── xyz.js │ │ └── main.js │ │ ├── file_cache.js │ │ ├── files │ │ ├── bar.js │ │ ├── extra.js │ │ ├── filterable.js │ │ ├── foo.js │ │ ├── main.js │ │ ├── pkg_filter │ │ │ ├── one.js │ │ │ ├── package.json │ │ │ ├── test.js │ │ │ └── two.js │ │ ├── tr_2dep_module │ │ │ ├── f.js │ │ │ ├── main.js │ │ │ └── node_modules │ │ │ │ ├── g │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ └── insert-ggg │ │ │ │ │ │ └── index.js │ │ │ │ └── package.json │ │ │ │ ├── insert-aaa │ │ │ │ └── index.js │ │ │ │ ├── insert-bbb │ │ │ │ └── index.js │ │ │ │ └── m │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ └── insert-mmm │ │ │ │ │ └── index.js │ │ │ │ └── package.json │ │ ├── tr_global │ │ │ ├── main.js │ │ │ └── package.json │ │ ├── tr_module │ │ │ ├── f.js │ │ │ ├── index.js │ │ │ ├── main.js │ │ │ ├── package.json │ │ │ └── xxx.js │ │ ├── tr_no_entry │ │ │ └── main.js │ │ ├── tr_rel │ │ │ ├── package.json │ │ │ ├── subdir │ │ │ │ └── main.js │ │ │ └── xxx.js │ │ ├── tr_sh │ │ │ ├── f.js │ │ │ ├── main.js │ │ │ ├── node_modules │ │ │ │ ├── g │ │ │ │ │ ├── index.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── tr_g.js │ │ │ │ └── m │ │ │ │ │ └── index.js │ │ │ ├── tr_a.js │ │ │ └── tr_b.js │ │ ├── tr_whole_package │ │ │ ├── f.js │ │ │ ├── main.js │ │ │ └── node_modules │ │ │ │ └── algo │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ └── decrement.js │ │ │ │ ├── node_modules │ │ │ │ └── insert-ggg │ │ │ │ │ └── index.js │ │ │ │ └── package.json │ │ ├── unicode │ │ │ ├── bar.js │ │ │ ├── foo.js │ │ │ └── main.js │ │ └── xyz.js │ │ ├── filter.js │ │ ├── ignore_missing.js │ │ ├── ignore_missing │ │ ├── main.js │ │ └── other.js │ │ ├── ignore_missing_cache.js │ │ ├── node_modules │ │ └── insert-www │ │ │ └── index.js │ │ ├── noparse.js │ │ ├── noparse_row.js │ │ ├── pkg.js │ │ ├── pkg │ │ ├── main.js │ │ └── package.json │ │ ├── pkg_filter.js │ │ ├── row_expose.js │ │ ├── row_expose_name_is_file_transform.js │ │ ├── row_expose_transform.js │ │ ├── source.js │ │ ├── tr_2dep_module.js │ │ ├── tr_err.js │ │ ├── tr_flags.js │ │ ├── tr_flags │ │ └── empty.js │ │ ├── tr_fn.js │ │ ├── tr_global.js │ │ ├── tr_module.js │ │ ├── tr_no_entry.js │ │ ├── tr_opts.js │ │ ├── tr_opts │ │ ├── main.js │ │ └── package.json │ │ ├── tr_rel.js │ │ ├── tr_sh.js │ │ ├── tr_whole_package.js │ │ ├── tr_write.js │ │ ├── tr_write │ │ └── main.js │ │ ├── undef_file.js │ │ └── unicode.js ├── once │ ├── LICENSE │ ├── README.md │ ├── once.js │ └── package.json ├── os-browserify │ ├── .npmignore │ ├── LICENSE │ ├── README.md │ ├── browser.js │ ├── main.js │ └── package.json ├── pako │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── dist │ │ ├── pako.js │ │ ├── pako.min.js │ │ ├── pako_deflate.js │ │ ├── pako_deflate.min.js │ │ ├── pako_inflate.js │ │ └── pako_inflate.min.js │ ├── index.js │ ├── lib │ │ ├── deflate.js │ │ ├── inflate.js │ │ ├── utils │ │ │ ├── common.js │ │ │ └── strings.js │ │ └── zlib │ │ │ ├── adler32.js │ │ │ ├── constants.js │ │ │ ├── crc32.js │ │ │ ├── deflate.js │ │ │ ├── gzheader.js │ │ │ ├── inffast.js │ │ │ ├── inflate.js │ │ │ ├── inftrees.js │ │ │ ├── messages.js │ │ │ ├── trees.js │ │ │ └── zstream.js │ └── package.json ├── parents │ ├── .travis.yml │ ├── LICENSE │ ├── example │ │ ├── dirname.js │ │ └── win32.js │ ├── index.js │ ├── package.json │ ├── readme.markdown │ └── test │ │ ├── dirname.js │ │ └── win32.js ├── parse-asn1 │ ├── .npmignore │ ├── .travis.yml │ ├── README.md │ ├── aesid.json │ ├── asn1.js │ ├── fixProc.js │ ├── index.js │ ├── package.json │ └── test │ │ ├── 1024.priv │ │ ├── 1024.pub │ │ ├── dsa.1024.priv │ │ ├── dsa.1024.pub │ │ ├── dsa.2048.priv │ │ ├── dsa.2048.pub │ │ ├── ec.pass.priv │ │ ├── ec.priv │ │ ├── ec.pub │ │ ├── index.js │ │ ├── pass.1024.priv │ │ ├── pass.1024.pub │ │ ├── pass.dsa.1024.priv │ │ ├── pass.dsa.1024.pub │ │ ├── pass.rsa.1024.priv │ │ ├── pass.rsa.1024.pub │ │ ├── pass.rsa.2028.priv │ │ ├── pass.rsa.2028.pub │ │ ├── pass2.dsa.1024.priv │ │ ├── pass2.dsa.1024.pub │ │ ├── rsa.1024.priv │ │ ├── rsa.1024.pub │ │ ├── rsa.2028.priv │ │ ├── rsa.2028.pub │ │ ├── vector.js │ │ ├── vector.priv │ │ └── vector2.priv ├── path-browserify │ ├── LICENSE │ ├── index.js │ ├── package.json │ └── readme.markdown ├── path-is-absolute │ ├── index.js │ ├── license │ ├── package.json │ └── readme.md ├── path-platform │ ├── LICENSE │ ├── README.md │ ├── package.json │ └── path.js ├── pbkdf2 │ ├── LICENSE │ ├── README.md │ ├── browser.js │ ├── index.js │ ├── package.json │ └── precondition.js ├── process-nextick-args │ ├── .travis.yml │ ├── index.js │ ├── license.md │ ├── package.json │ ├── readme.md │ └── test.js ├── process │ ├── .eslintrc │ ├── LICENSE │ ├── README.md │ ├── browser.js │ ├── index.js │ ├── package.json │ └── test.js ├── public-encrypt │ ├── .travis.yml │ ├── browser.js │ ├── index.js │ ├── mgf.js │ ├── package.json │ ├── privateDecrypt.js │ ├── publicEncrypt.js │ ├── readme.md │ ├── test │ │ ├── 1024.priv │ │ ├── 1024.pub │ │ ├── ec.pass.priv │ │ ├── ec.priv │ │ ├── ec.pub │ │ ├── index.js │ │ ├── nodeTests.js │ │ ├── pass.1024.priv │ │ ├── pass.1024.pub │ │ ├── rsa.1024.priv │ │ ├── rsa.1024.pub │ │ ├── rsa.2028.priv │ │ ├── rsa.2028.pub │ │ ├── rsa.pass.priv │ │ ├── rsa.pass.pub │ │ ├── test_cert.pem │ │ ├── test_key.pem │ │ ├── test_rsa_privkey.pem │ │ ├── test_rsa_privkey_encrypted.pem │ │ └── test_rsa_pubkey.pem │ ├── withPublic.js │ └── xor.js ├── punycode │ ├── LICENSE-MIT.txt │ ├── README.md │ ├── package.json │ └── punycode.js ├── querystring-es3 │ ├── .travis.yml │ ├── History.md │ ├── License.md │ ├── Readme.md │ ├── decode.js │ ├── encode.js │ ├── index.js │ ├── package.json │ └── test │ │ ├── common-index.js │ │ ├── index.js │ │ └── tap-index.js ├── querystring │ ├── .History.md.un~ │ ├── .Readme.md.un~ │ ├── .package.json.un~ │ ├── .travis.yml │ ├── History.md │ ├── License.md │ ├── Readme.md │ ├── decode.js │ ├── encode.js │ ├── index.js │ ├── package.json │ └── test │ │ ├── .index.js.un~ │ │ ├── common-index.js │ │ ├── index.js │ │ └── tap-index.js ├── randombytes │ ├── .travis.yml │ ├── .zuul.yml │ ├── README.md │ ├── browser.js │ ├── index.js │ ├── package.json │ └── test.js ├── read-only-stream │ ├── .travis.yml │ ├── LICENSE │ ├── example │ │ ├── main.js │ │ └── wrap.js │ ├── index.js │ ├── package.json │ ├── readme.markdown │ └── test │ │ ├── error.js │ │ ├── ro.js │ │ └── streams1.js ├── readable-stream │ ├── .npmignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── doc │ │ ├── stream.md │ │ └── wg-meetings │ │ │ └── 2015-01-30.md │ ├── duplex.js │ ├── lib │ │ ├── _stream_duplex.js │ │ ├── _stream_passthrough.js │ │ ├── _stream_readable.js │ │ ├── _stream_transform.js │ │ ├── _stream_writable.js │ │ └── internal │ │ │ └── streams │ │ │ └── BufferList.js │ ├── package.json │ ├── passthrough.js │ ├── readable.js │ ├── transform.js │ └── writable.js ├── resolve │ ├── .travis.yml │ ├── LICENSE │ ├── example │ │ ├── async.js │ │ └── sync.js │ ├── index.js │ ├── lib │ │ ├── async.js │ │ ├── caller.js │ │ ├── core.js │ │ ├── core.json │ │ ├── node-modules-paths.js │ │ └── sync.js │ ├── package.json │ ├── readme.markdown │ └── test │ │ ├── core.js │ │ ├── dotdot.js │ │ ├── dotdot │ │ ├── abc │ │ │ └── index.js │ │ └── index.js │ │ ├── faulty_basedir.js │ │ ├── filter.js │ │ ├── filter_sync.js │ │ ├── mock.js │ │ ├── mock_sync.js │ │ ├── module_dir.js │ │ ├── module_dir │ │ ├── xmodules │ │ │ └── aaa │ │ │ │ └── index.js │ │ ├── ymodules │ │ │ └── aaa │ │ │ │ └── index.js │ │ └── zmodules │ │ │ └── bbb │ │ │ ├── main.js │ │ │ └── package.json │ │ ├── node_path.js │ │ ├── node_path │ │ ├── x │ │ │ ├── aaa │ │ │ │ └── index.js │ │ │ └── ccc │ │ │ │ └── index.js │ │ └── y │ │ │ ├── bbb │ │ │ └── index.js │ │ │ └── ccc │ │ │ └── index.js │ │ ├── nonstring.js │ │ ├── pathfilter.js │ │ ├── pathfilter │ │ └── deep_ref │ │ │ ├── main.js │ │ │ └── node_modules │ │ │ └── deep │ │ │ ├── alt.js │ │ │ ├── deeper │ │ │ └── ref.js │ │ │ ├── package.json │ │ │ └── ref.js │ │ ├── precedence.js │ │ ├── precedence │ │ ├── aaa.js │ │ ├── aaa │ │ │ ├── index.js │ │ │ └── main.js │ │ ├── bbb.js │ │ └── bbb │ │ │ └── main.js │ │ ├── resolver.js │ │ ├── resolver │ │ ├── bar │ │ │ └── node_modules │ │ │ │ └── foo │ │ │ │ └── index.js │ │ ├── baz │ │ │ ├── doom.js │ │ │ ├── package.json │ │ │ └── quux.js │ │ ├── biz │ │ │ └── node_modules │ │ │ │ ├── garply │ │ │ │ ├── lib │ │ │ │ │ └── index.js │ │ │ │ └── package.json │ │ │ │ ├── grux │ │ │ │ └── index.js │ │ │ │ └── tiv │ │ │ │ └── index.js │ │ ├── cup.coffee │ │ ├── foo.js │ │ ├── incorrect_main │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── mug.coffee │ │ ├── mug.js │ │ ├── other_path │ │ │ ├── lib │ │ │ │ └── other-lib.js │ │ │ └── root.js │ │ ├── punycode │ │ │ └── node_modules │ │ │ │ └── punycode │ │ │ │ └── index.js │ │ ├── quux │ │ │ └── foo │ │ │ │ └── index.js │ │ └── without_basedir │ │ │ ├── main.js │ │ │ └── node_modules │ │ │ └── mymodule.js │ │ ├── resolver_sync.js │ │ ├── subdirs.js │ │ └── subdirs │ │ └── node_modules │ │ └── a │ │ ├── b │ │ └── c │ │ │ └── x.json │ │ └── package.json ├── ripemd160 │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── lib │ │ └── ripemd160.js │ └── package.json ├── sha.js │ ├── .npmignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── bin.js │ ├── hash.js │ ├── hexpp.js │ ├── index.js │ ├── package.json │ ├── sha.js │ ├── sha1.js │ ├── sha224.js │ ├── sha256.js │ ├── sha384.js │ ├── sha512.js │ └── test │ │ ├── hash.js │ │ ├── test.js │ │ └── vectors.js ├── shasum │ ├── .npmignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── browser.js │ ├── index.js │ ├── package.json │ └── test │ │ └── index.js ├── shell-quote │ ├── .travis.yml │ ├── LICENSE │ ├── example │ │ ├── env.js │ │ ├── op.js │ │ ├── parse.js │ │ └── quote.js │ ├── index.js │ ├── package.json │ ├── readme.markdown │ └── test │ │ ├── comment.js │ │ ├── env.js │ │ ├── env_fn.js │ │ ├── op.js │ │ ├── parse.js │ │ ├── quote.js │ │ └── set.js ├── source-map │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── dist │ │ ├── source-map.debug.js │ │ ├── source-map.js │ │ ├── source-map.min.js │ │ └── source-map.min.js.map │ ├── lib │ │ ├── array-set.js │ │ ├── base64-vlq.js │ │ ├── base64.js │ │ ├── binary-search.js │ │ ├── mapping-list.js │ │ ├── quick-sort.js │ │ ├── source-map-consumer.js │ │ ├── source-map-generator.js │ │ ├── source-node.js │ │ └── util.js │ ├── package.json │ └── source-map.js ├── stream-browserify │ ├── .npmignore │ ├── .travis.yml │ ├── LICENSE │ ├── index.js │ ├── package.json │ ├── readme.markdown │ └── test │ │ └── buf.js ├── stream-combiner2 │ ├── .npmignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── index.js │ ├── package.json │ └── test │ │ └── index.js ├── stream-http │ ├── .npmignore │ ├── .travis.yml │ ├── .zuul.yml │ ├── LICENSE │ ├── README.md │ ├── ie8-polyfill.js │ ├── index.js │ ├── lib │ │ ├── capability.js │ │ ├── request.js │ │ └── response.js │ ├── package.json │ └── test │ │ ├── browser │ │ ├── abort.js │ │ ├── auth.js │ │ ├── binary-streaming.js │ │ ├── binary.js │ │ ├── cookie.js │ │ ├── disable-fetch.js │ │ ├── error.js.disabled │ │ ├── headers.js │ │ ├── lib │ │ │ └── webworker-worker.js │ │ ├── package.json │ │ ├── post-binary.js │ │ ├── post-text.js │ │ ├── text-streaming.js │ │ ├── text.js │ │ └── webworker.js │ │ ├── node │ │ └── http-browserify.js │ │ └── server │ │ ├── index.js │ │ └── static │ │ ├── basic.txt │ │ ├── browserify.png │ │ └── test-polyfill.js ├── stream-splicer │ ├── .travis.yml │ ├── LICENSE │ ├── example │ │ └── header.js │ ├── index.js │ ├── package.json │ ├── readme.markdown │ └── test │ │ ├── combiner.js │ │ ├── combiner_stream.js │ │ ├── empty.js │ │ ├── empty_no_data.js │ │ ├── get.js │ │ ├── multipush.js │ │ ├── multiunshift.js │ │ ├── nested.js │ │ ├── nested_middle.js │ │ ├── pop.js │ │ ├── push.js │ │ ├── shift.js │ │ ├── splice.js │ │ └── unshift.js ├── string_decoder │ ├── .npmignore │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── subarg │ ├── .travis.yml │ ├── LICENSE │ ├── example │ │ └── show.js │ ├── index.js │ ├── package.json │ ├── readme.markdown │ └── test │ │ ├── arg.js │ │ └── recursive.js ├── syntax-error │ ├── .travis.yml │ ├── LICENSE │ ├── example │ │ ├── check.js │ │ └── src.js │ ├── index.js │ ├── node_modules │ │ ├── .bin │ │ │ ├── acorn │ │ │ └── acorn.cmd │ │ └── acorn │ │ │ ├── .editorconfig │ │ │ ├── .gitattributes │ │ │ ├── .npmignore │ │ │ ├── .tern-project │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bin │ │ │ ├── acorn │ │ │ ├── build-acorn.js │ │ │ ├── generate-identifier-regex.js │ │ │ └── update_authors.sh │ │ │ ├── dist │ │ │ ├── .keep │ │ │ ├── acorn.js │ │ │ ├── acorn_loose.js │ │ │ └── walk.js │ │ │ ├── package.json │ │ │ └── src │ │ │ ├── bin │ │ │ └── acorn.js │ │ │ ├── expression.js │ │ │ ├── identifier.js │ │ │ ├── index.js │ │ │ ├── location.js │ │ │ ├── locutil.js │ │ │ ├── loose │ │ │ ├── acorn_loose.js │ │ │ ├── expression.js │ │ │ ├── index.js │ │ │ ├── parseutil.js │ │ │ ├── state.js │ │ │ ├── statement.js │ │ │ └── tokenize.js │ │ │ ├── lval.js │ │ │ ├── node.js │ │ │ ├── options.js │ │ │ ├── parseutil.js │ │ │ ├── state.js │ │ │ ├── statement.js │ │ │ ├── tokencontext.js │ │ │ ├── tokenize.js │ │ │ ├── tokentype.js │ │ │ ├── util.js │ │ │ ├── walk │ │ │ └── index.js │ │ │ └── whitespace.js │ ├── package.json │ ├── readme.markdown │ └── test │ │ ├── check.js │ │ ├── html.js │ │ ├── ok.js │ │ ├── run.js │ │ ├── run2.js │ │ ├── shebang.js │ │ ├── sources │ │ ├── check.js │ │ ├── ok.js │ │ ├── run.js │ │ ├── run2.js │ │ ├── shebang.js │ │ └── yield.js │ │ └── yield.js ├── through │ ├── .travis.yml │ ├── LICENSE.APACHE2 │ ├── LICENSE.MIT │ ├── index.js │ ├── package.json │ ├── readme.markdown │ └── test │ │ ├── async.js │ │ ├── auto-destroy.js │ │ ├── buffering.js │ │ ├── end.js │ │ └── index.js ├── through2 │ ├── .npmignore │ ├── LICENSE │ ├── README.md │ ├── node_modules │ │ └── readable-stream │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── .zuul.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc │ │ │ ├── stream.markdown │ │ │ └── wg-meetings │ │ │ │ └── 2015-01-30.md │ │ │ ├── duplex.js │ │ │ ├── lib │ │ │ ├── _stream_duplex.js │ │ │ ├── _stream_passthrough.js │ │ │ ├── _stream_readable.js │ │ │ ├── _stream_transform.js │ │ │ └── _stream_writable.js │ │ │ ├── package.json │ │ │ ├── passthrough.js │ │ │ ├── readable.js │ │ │ ├── transform.js │ │ │ └── writable.js │ ├── package.json │ └── through2.js ├── timers-browserify │ ├── .npmignore │ ├── CHANGELOG.md │ ├── LICENSE.md │ ├── README.md │ ├── example │ │ └── enroll │ │ │ ├── build.sh │ │ │ ├── index.html │ │ │ ├── js │ │ │ ├── browserify.js │ │ │ └── main.js │ │ │ └── server.js │ ├── main.js │ └── package.json ├── to-arraybuffer │ ├── .npmignore │ ├── .travis.yml │ ├── .zuul.yml │ ├── LICENSE │ ├── README.md │ ├── index.js │ ├── package.json │ └── test.js ├── tty-browserify │ ├── LICENSE │ ├── index.js │ ├── package.json │ └── readme.markdown ├── typedarray │ ├── .travis.yml │ ├── LICENSE │ ├── example │ │ └── tarray.js │ ├── index.js │ ├── package.json │ ├── readme.markdown │ └── test │ │ ├── server │ │ └── undef_globals.js │ │ └── tarray.js ├── umd │ ├── README.md │ ├── bin │ │ └── cli.js │ ├── index.js │ └── package.json ├── url │ ├── .npmignore │ ├── .travis.yml │ ├── .zuul.yml │ ├── LICENSE │ ├── README.md │ ├── node_modules │ │ └── punycode │ │ │ ├── LICENSE-MIT.txt │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── punycode.js │ ├── package.json │ ├── test.js │ ├── url.js │ └── util.js ├── util-deprecate │ ├── History.md │ ├── LICENSE │ ├── README.md │ ├── browser.js │ ├── node.js │ └── package.json ├── util │ ├── .npmignore │ ├── .travis.yml │ ├── .zuul.yml │ ├── LICENSE │ ├── README.md │ ├── node_modules │ │ └── inherits │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── inherits.js │ │ │ ├── inherits_browser.js │ │ │ ├── package.json │ │ │ └── test.js │ ├── package.json │ ├── support │ │ ├── isBuffer.js │ │ └── isBufferBrowser.js │ ├── test │ │ ├── browser │ │ │ ├── inspect.js │ │ │ └── is.js │ │ └── node │ │ │ ├── debug.js │ │ │ ├── format.js │ │ │ ├── inspect.js │ │ │ ├── log.js │ │ │ └── util.js │ └── util.js ├── vm-browserify │ ├── LICENSE │ ├── example │ │ └── run │ │ │ ├── bundle.js │ │ │ ├── entry.js │ │ │ ├── index.html │ │ │ └── server.js │ ├── index.js │ ├── package.json │ ├── readme.markdown │ └── test │ │ └── vm.js ├── wrappy │ ├── LICENSE │ ├── README.md │ ├── package.json │ └── wrappy.js └── xtend │ ├── .jshintrc │ ├── .npmignore │ ├── LICENCE │ ├── Makefile │ ├── README.md │ ├── immutable.js │ ├── mutable.js │ ├── package.json │ └── test.js ├── package-lock.json └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | 3 | .vscode 4 | .idea 5 | -------------------------------------------------------------------------------- /animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanlon/text-signature/f7c1978d459fa4d38b3379991011f269cfeb4b87/animation.gif -------------------------------------------------------------------------------- /node_modules/.bin/JSONStream.cmd: -------------------------------------------------------------------------------- 1 | @IF EXIST "%~dp0\node.exe" ( 2 | "%~dp0\node.exe" "%~dp0\..\JSONStream\index.js" %* 3 | ) ELSE ( 4 | @SETLOCAL 5 | @SET PATHEXT=%PATHEXT:;.JS;=;% 6 | node "%~dp0\..\JSONStream\index.js" %* 7 | ) -------------------------------------------------------------------------------- /node_modules/.bin/acorn.cmd: -------------------------------------------------------------------------------- 1 | @IF EXIST "%~dp0\node.exe" ( 2 | "%~dp0\node.exe" "%~dp0\..\acorn\bin\acorn" %* 3 | ) ELSE ( 4 | @SETLOCAL 5 | @SET PATHEXT=%PATHEXT:;.JS;=;% 6 | node "%~dp0\..\acorn\bin\acorn" %* 7 | ) -------------------------------------------------------------------------------- /node_modules/.bin/browser-pack.cmd: -------------------------------------------------------------------------------- 1 | @IF EXIST "%~dp0\node.exe" ( 2 | "%~dp0\node.exe" "%~dp0\..\browser-pack\bin\cmd.js" %* 3 | ) ELSE ( 4 | @SETLOCAL 5 | @SET PATHEXT=%PATHEXT:;.JS;=;% 6 | node "%~dp0\..\browser-pack\bin\cmd.js" %* 7 | ) -------------------------------------------------------------------------------- /node_modules/.bin/browserify.cmd: -------------------------------------------------------------------------------- 1 | @IF EXIST "%~dp0\node.exe" ( 2 | "%~dp0\node.exe" "%~dp0\..\browserify\bin\cmd.js" %* 3 | ) ELSE ( 4 | @SETLOCAL 5 | @SET PATHEXT=%PATHEXT:;.JS;=;% 6 | node "%~dp0\..\browserify\bin\cmd.js" %* 7 | ) -------------------------------------------------------------------------------- /node_modules/.bin/deps-sort.cmd: -------------------------------------------------------------------------------- 1 | @IF EXIST "%~dp0\node.exe" ( 2 | "%~dp0\node.exe" "%~dp0\..\deps-sort\bin\cmd.js" %* 3 | ) ELSE ( 4 | @SETLOCAL 5 | @SET PATHEXT=%PATHEXT:;.JS;=;% 6 | node "%~dp0\..\deps-sort\bin\cmd.js" %* 7 | ) -------------------------------------------------------------------------------- /node_modules/.bin/insert-module-globals.cmd: -------------------------------------------------------------------------------- 1 | @IF EXIST "%~dp0\node.exe" ( 2 | "%~dp0\node.exe" "%~dp0\..\insert-module-globals\bin\cmd.js" %* 3 | ) ELSE ( 4 | @SETLOCAL 5 | @SET PATHEXT=%PATHEXT:;.JS;=;% 6 | node "%~dp0\..\insert-module-globals\bin\cmd.js" %* 7 | ) -------------------------------------------------------------------------------- /node_modules/.bin/miller-rabin.cmd: -------------------------------------------------------------------------------- 1 | @IF EXIST "%~dp0\node.exe" ( 2 | "%~dp0\node.exe" "%~dp0\..\miller-rabin\bin\miller-rabin" %* 3 | ) ELSE ( 4 | @SETLOCAL 5 | @SET PATHEXT=%PATHEXT:;.JS;=;% 6 | node "%~dp0\..\miller-rabin\bin\miller-rabin" %* 7 | ) -------------------------------------------------------------------------------- /node_modules/.bin/module-deps.cmd: -------------------------------------------------------------------------------- 1 | @IF EXIST "%~dp0\node.exe" ( 2 | "%~dp0\node.exe" "%~dp0\..\module-deps\bin\cmd.js" %* 3 | ) ELSE ( 4 | @SETLOCAL 5 | @SET PATHEXT=%PATHEXT:;.JS;=;% 6 | node "%~dp0\..\module-deps\bin\cmd.js" %* 7 | ) -------------------------------------------------------------------------------- /node_modules/.bin/sha.js.cmd: -------------------------------------------------------------------------------- 1 | @IF EXIST "%~dp0\node.exe" ( 2 | "%~dp0\node.exe" "%~dp0\..\sha.js\bin.js" %* 3 | ) ELSE ( 4 | @SETLOCAL 5 | @SET PATHEXT=%PATHEXT:;.JS;=;% 6 | node "%~dp0\..\sha.js\bin.js" %* 7 | ) -------------------------------------------------------------------------------- /node_modules/.bin/umd.cmd: -------------------------------------------------------------------------------- 1 | @IF EXIST "%~dp0\node.exe" ( 2 | "%~dp0\node.exe" "%~dp0\..\umd\bin\cli.js" %* 3 | ) ELSE ( 4 | @SETLOCAL 5 | @SET PATHEXT=%PATHEXT:;.JS;=;% 6 | node "%~dp0\..\umd\bin\cli.js" %* 7 | ) -------------------------------------------------------------------------------- /node_modules/JSONStream/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/* 2 | node_modules 3 | -------------------------------------------------------------------------------- /node_modules/JSONStream/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 4 4 | - 5 5 | - 6 6 | 7 | 8 | -------------------------------------------------------------------------------- /node_modules/JSONStream/test/fixtures/error.json: -------------------------------------------------------------------------------- 1 | {"error": "error_code", "message": "this is an error message"} 2 | -------------------------------------------------------------------------------- /node_modules/acorn/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = space 5 | indent_size = 2 6 | end_of_line = lf 7 | insert_final_newline = true 8 | -------------------------------------------------------------------------------- /node_modules/acorn/.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf 2 | -------------------------------------------------------------------------------- /node_modules/acorn/.npmignore: -------------------------------------------------------------------------------- 1 | /.tern-port 2 | /test 3 | /local 4 | -------------------------------------------------------------------------------- /node_modules/acorn/.tern-project: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /node_modules/acorn/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: '0.10' 3 | -------------------------------------------------------------------------------- /node_modules/acorn/bin/prepublish.sh: -------------------------------------------------------------------------------- 1 | node bin/build-acorn.js 2 | node bin/without_eval > dist/acorn_csp.js 3 | -------------------------------------------------------------------------------- /node_modules/acorn/dist/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanlon/text-signature/f7c1978d459fa4d38b3379991011f269cfeb4b87/node_modules/acorn/dist/.keep -------------------------------------------------------------------------------- /node_modules/acorn/src/loose/acorn_loose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanlon/text-signature/f7c1978d459fa4d38b3379991011f269cfeb4b87/node_modules/acorn/src/loose/acorn_loose.js -------------------------------------------------------------------------------- /node_modules/acorn/src/util.js: -------------------------------------------------------------------------------- 1 | export function isArray(obj) { 2 | return Object.prototype.toString.call(obj) === "[object Array]" 3 | } 4 | 5 | // Checks if an object has a property. 6 | 7 | export function has(obj, propName) { 8 | return Object.prototype.hasOwnProperty.call(obj, propName) 9 | } 10 | -------------------------------------------------------------------------------- /node_modules/array-filter/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /node_modules/array-filter/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /node_modules/array-map/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /node_modules/array-map/example/map.js: -------------------------------------------------------------------------------- 1 | var map = require('../'); 2 | var letters = map([97,98,99], function (c) { 3 | return String.fromCharCode(c); 4 | }); 5 | console.log(letters.join('')); 6 | -------------------------------------------------------------------------------- /node_modules/array-reduce/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /node_modules/array-reduce/example/sum.js: -------------------------------------------------------------------------------- 1 | var reduce = require('../'); 2 | var xs = [ 1, 2, 3, 4 ]; 3 | var sum = reduce(xs, function (acc, x) { return acc + x }, 0); 4 | console.log(sum); 5 | -------------------------------------------------------------------------------- /node_modules/asn1.js/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | rfc 3 | -------------------------------------------------------------------------------- /node_modules/asn1.js/lib/asn1/base/index.js: -------------------------------------------------------------------------------- 1 | var base = exports; 2 | 3 | base.Reporter = require('./reporter').Reporter; 4 | base.DecoderBuffer = require('./buffer').DecoderBuffer; 5 | base.EncoderBuffer = require('./buffer').EncoderBuffer; 6 | base.Node = require('./node'); 7 | -------------------------------------------------------------------------------- /node_modules/asn1.js/lib/asn1/decoders/index.js: -------------------------------------------------------------------------------- 1 | var decoders = exports; 2 | 3 | decoders.der = require('./der'); 4 | decoders.pem = require('./pem'); 5 | -------------------------------------------------------------------------------- /node_modules/asn1.js/lib/asn1/encoders/index.js: -------------------------------------------------------------------------------- 1 | var encoders = exports; 2 | 3 | encoders.der = require('./der'); 4 | encoders.pem = require('./pem'); 5 | -------------------------------------------------------------------------------- /node_modules/asn1.js/test.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const rfc5280 = require('./rfc/5280'); 4 | 5 | const tbs = 6 | -------------------------------------------------------------------------------- /node_modules/assert/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /node_modules/assert/.zuul.yml: -------------------------------------------------------------------------------- 1 | ui: mocha-qunit 2 | browsers: 3 | - name: chrome 4 | version: latest 5 | - name: firefox 6 | version: latest 7 | - name: safari 8 | version: latest 9 | - name: ie 10 | version: 9..latest 11 | -------------------------------------------------------------------------------- /node_modules/astw/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | - "0.12" 6 | - "iojs" 7 | before_install: 8 | - npm install -g npm@~1.4.6 9 | -------------------------------------------------------------------------------- /node_modules/astw/example/types.js: -------------------------------------------------------------------------------- 1 | var astw = require('../'); 2 | var deparse = require('escodegen').generate; 3 | var walk = astw('4 + beep(5 * 2)'); 4 | 5 | walk(function (node) { 6 | var src = deparse(node); 7 | console.log(node.type + ' :: ' + JSON.stringify(src)); 8 | }); 9 | -------------------------------------------------------------------------------- /node_modules/balanced-match/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .gitignore 3 | .travis.yml 4 | Makefile 5 | example.js 6 | -------------------------------------------------------------------------------- /node_modules/bn.js/.npmignore: -------------------------------------------------------------------------------- 1 | benchmarks/ 2 | coverage/ 3 | node_modules/ 4 | npm-debug.log 5 | 1.js 6 | logo.png 7 | -------------------------------------------------------------------------------- /node_modules/bn.js/.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | language: node_js 3 | node_js: 4 | - "0.10" 5 | - "0.12" 6 | - "4" 7 | - "5" 8 | env: 9 | matrix: 10 | - TEST_SUITE=unit 11 | matrix: 12 | include: 13 | - node_js: "4" 14 | env: TEST_SUITE=lint 15 | script: npm run $TEST_SUITE 16 | -------------------------------------------------------------------------------- /node_modules/brorand/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /node_modules/brorand/test/api-test.js: -------------------------------------------------------------------------------- 1 | var brorand = require('../'); 2 | var assert = require('assert'); 3 | 4 | describe('Brorand', function() { 5 | it('should generate random numbers', function() { 6 | assert.equal(brorand(100).length, 100); 7 | }); 8 | }); 9 | -------------------------------------------------------------------------------- /node_modules/browser-pack/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /node_modules/browser-pack/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | - "0.12" 5 | - node 6 | -------------------------------------------------------------------------------- /node_modules/browser-pack/bin/cmd.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | var pack = require('../')(); 4 | process.stdin.pipe(pack).pipe(process.stdout); 5 | -------------------------------------------------------------------------------- /node_modules/browser-pack/bin/prepublish.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | var uglify = require('uglify-js'); 4 | var fs = require('fs'); 5 | var path = require('path'); 6 | 7 | var src = fs.readFileSync(path.join(__dirname, '..', 'prelude.js'), 'utf8'); 8 | fs.writeFileSync(path.join(__dirname, '..', '_prelude.js'), uglify(src)); 9 | -------------------------------------------------------------------------------- /node_modules/browser-resolve/empty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanlon/text-signature/f7c1978d459fa4d38b3379991011f269cfeb4b87/node_modules/browser-resolve/empty.js -------------------------------------------------------------------------------- /node_modules/browserify-aes/.npmignore: -------------------------------------------------------------------------------- 1 | test/ 2 | -------------------------------------------------------------------------------- /node_modules/browserify-aes/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.11" 4 | - "0.10" 5 | - "0.12" 6 | - "iojs" 7 | -------------------------------------------------------------------------------- /node_modules/browserify-aes/modes/ecb.js: -------------------------------------------------------------------------------- 1 | exports.encrypt = function (self, block) { 2 | return self._cipher.encryptBlock(block) 3 | } 4 | exports.decrypt = function (self, block) { 5 | return self._cipher.decryptBlock(block) 6 | } 7 | -------------------------------------------------------------------------------- /node_modules/browserify-cipher/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.11" 4 | - "0.10" 5 | - "0.12" 6 | - "iojs" 7 | -------------------------------------------------------------------------------- /node_modules/browserify-des/readme.md: -------------------------------------------------------------------------------- 1 | browserify-des 2 | === 3 | 4 | DES for browserify 5 | -------------------------------------------------------------------------------- /node_modules/browserify-rsa/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.11" -------------------------------------------------------------------------------- /node_modules/browserify-sign/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /node_modules/browserify-sign/.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | language: node_js 3 | node_js: 4 | - "0.10" 5 | - "0.11" 6 | - "0.12" 7 | - "iojs" 8 | env: 9 | - TEST_SUITE=standard 10 | - TEST_SUITE=unit 11 | script: "npm run-script $TEST_SUITE" 12 | -------------------------------------------------------------------------------- /node_modules/browserify-sign/curves.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | exports['1.3.132.0.10'] = 'secp256k1' 3 | 4 | exports['1.3.132.0.33'] = 'p224' 5 | 6 | exports['1.2.840.10045.3.1.1'] = 'p192' 7 | 8 | exports['1.2.840.10045.3.1.7'] = 'p256' 9 | 10 | exports['1.3.132.0.34'] = 'p384' 11 | 12 | exports['1.3.132.0.35'] = 'p521' 13 | -------------------------------------------------------------------------------- /node_modules/browserify-sign/ec.param: -------------------------------------------------------------------------------- 1 | -----BEGIN EC PARAMETERS----- 2 | BgUrgQQAIQ== 3 | -----END EC PARAMETERS----- 4 | -------------------------------------------------------------------------------- /node_modules/browserify-sign/index.js: -------------------------------------------------------------------------------- 1 | var crypto = require('crypto') 2 | 3 | exports.createSign = crypto.createSign 4 | exports.Sign = crypto.Sign 5 | 6 | exports.createVerify = crypto.createVerify 7 | exports.Verify = crypto.Verify 8 | -------------------------------------------------------------------------------- /node_modules/browserify-zlib/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /node_modules/browserify-zlib/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" -------------------------------------------------------------------------------- /node_modules/browserify-zlib/test/fixtures/empty.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /node_modules/browserify-zlib/test/fixtures/person.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanlon/text-signature/f7c1978d459fa4d38b3379991011f269cfeb4b87/node_modules/browserify-zlib/test/fixtures/person.jpg -------------------------------------------------------------------------------- /node_modules/browserify-zlib/test/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "browserify": { 3 | "transform": [ 4 | "brfs" 5 | ] 6 | } 7 | } -------------------------------------------------------------------------------- /node_modules/browserify/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "5" 4 | - "4" 5 | - "0.12" 6 | - "0.10" 7 | 8 | -------------------------------------------------------------------------------- /node_modules/browserify/example/api/browser/bar.js: -------------------------------------------------------------------------------- 1 | module.exports = function (n) { return n * 3 }; 2 | -------------------------------------------------------------------------------- /node_modules/browserify/example/api/browser/foo.js: -------------------------------------------------------------------------------- 1 | var bar = require('./bar'); 2 | 3 | module.exports = function (n) { 4 | return n * bar(n); 5 | }; 6 | -------------------------------------------------------------------------------- /node_modules/browserify/example/api/browser/main.js: -------------------------------------------------------------------------------- 1 | var foo = require('./foo'); 2 | console.log(foo(5)); 3 | -------------------------------------------------------------------------------- /node_modules/browserify/example/api/build.js: -------------------------------------------------------------------------------- 1 | var browserify = require('browserify'); 2 | var b = browserify(); 3 | b.add('./browser/main.js'); 4 | b.bundle().pipe(process.stdout); 5 | -------------------------------------------------------------------------------- /node_modules/browserify/example/multiple_bundles/beep.js: -------------------------------------------------------------------------------- 1 | var robot = require('./robot'); 2 | console.log(robot('beep')); 3 | -------------------------------------------------------------------------------- /node_modules/browserify/example/multiple_bundles/boop.js: -------------------------------------------------------------------------------- 1 | var robot = require('./robot'); 2 | console.log(robot('boop')); 3 | -------------------------------------------------------------------------------- /node_modules/browserify/example/multiple_bundles/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | browserify -r ./robot.js > static/common.js 3 | browserify -x ./robot.js beep.js > static/beep.js 4 | browserify -x ./robot.js boop.js > static/boop.js 5 | -------------------------------------------------------------------------------- /node_modules/browserify/example/multiple_bundles/robot.js: -------------------------------------------------------------------------------- 1 | module.exports = function (s) { return s.toUpperCase() + '!' }; 2 | -------------------------------------------------------------------------------- /node_modules/browserify/example/multiple_bundles/static/beep.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /node_modules/browserify/example/multiple_bundles/static/boop.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /node_modules/browserify/example/source_maps/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | ../../bin/cmd.js --debug -e ./js/main.js > js/build/bundle.js 3 | 4 | echo bundle was generated with source maps, you can now open index.html 5 | -------------------------------------------------------------------------------- /node_modules/browserify/example/source_maps/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |Open your dev tools ;)
10 | 11 | 12 | -------------------------------------------------------------------------------- /node_modules/browserify/example/source_maps/js/build/.npmignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /node_modules/browserify/example/source_maps/js/foo.js: -------------------------------------------------------------------------------- 1 | console.log('foo line 1'); 2 | var bar = require('./wunder/bar'); 3 | 4 | module.exports = function foo() { 5 | console.log('hello from foo line 5'); 6 | bar(); 7 | }; 8 | -------------------------------------------------------------------------------- /node_modules/browserify/example/source_maps/js/main.js: -------------------------------------------------------------------------------- 1 | console.log('main line 1'); 2 | var foo = require('./foo.js'); 3 | 4 | foo(); 5 | -------------------------------------------------------------------------------- /node_modules/browserify/example/source_maps/js/wunder/bar.js: -------------------------------------------------------------------------------- 1 | console.log('bar line 1'); 2 | 'use strict'; 3 | 4 | // this is a meaningless comment to add some lines 5 | 6 | module.exports = function bar() { 7 | console.log('hello from bar line 7'); 8 | }; 9 | -------------------------------------------------------------------------------- /node_modules/browserify/lib/_empty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanlon/text-signature/f7c1978d459fa4d38b3379991011f269cfeb4b87/node_modules/browserify/lib/_empty.js -------------------------------------------------------------------------------- /node_modules/browserify/test/array/one.js: -------------------------------------------------------------------------------- 1 | console.log('ONE'); 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/array/three.js: -------------------------------------------------------------------------------- 1 | console.log('THREE'); 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/array/two.js: -------------------------------------------------------------------------------- 1 | console.log('TWO'); 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/bare/main.js: -------------------------------------------------------------------------------- 1 | console.log([ 2 | __dirname, 3 | __filename, 4 | typeof process, 5 | typeof global, 6 | typeof Buffer 7 | ]); 8 | -------------------------------------------------------------------------------- /node_modules/browserify/test/bin_tr_error/main.js: -------------------------------------------------------------------------------- 1 | t.equal(XXX * 5, 555); 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/bom/hello.js: -------------------------------------------------------------------------------- 1 | console.log('hello') 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/browser_field_file/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "browser": { 3 | "./xyz": "wow.js" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/browserify/test/browser_field_file/wow.js: -------------------------------------------------------------------------------- 1 | console.log('cool beans'); 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/browser_field_resolve/a/main.js: -------------------------------------------------------------------------------- 1 | console.log(require('zzz')) 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/browser_field_resolve/a/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "browser": { 3 | "zzz": "aaa" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/browserify/test/browser_field_resolve/b/main.js: -------------------------------------------------------------------------------- 1 | console.log(require('zzz')) 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/browser_field_resolve/b/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "browser": { 3 | "zzz": "./x" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/browserify/test/browser_field_resolve/b/x.js: -------------------------------------------------------------------------------- 1 | module.exports = 444 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/browser_field_resolve/c/main.js: -------------------------------------------------------------------------------- 1 | console.log(require('./z.js')) 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/browser_field_resolve/c/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "browser": { 3 | "./z": "./x" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/browserify/test/browser_field_resolve/c/x.js: -------------------------------------------------------------------------------- 1 | module.exports = 333 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/browser_field_resolve/d/main.js: -------------------------------------------------------------------------------- 1 | console.log(require('./z.js')) 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/browser_field_resolve/d/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "browser": { 3 | "./z.js": "./x.js" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/browserify/test/browser_field_resolve/d/x.js: -------------------------------------------------------------------------------- 1 | module.exports = 222 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/browser_field_resolve/e/main.js: -------------------------------------------------------------------------------- 1 | console.log(require('./z.js')) 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/browser_field_resolve/e/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "browser": { 3 | "./z": "./x.js" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/browserify/test/browser_field_resolve/e/x.js: -------------------------------------------------------------------------------- 1 | module.exports = 111 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/browser_field_resolve/f/main.js: -------------------------------------------------------------------------------- 1 | console.log(require('aaa/what.js')) 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/browser_field_resolve/f/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "browser": { 3 | "aaa/what": "./x.js" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/browserify/test/browser_field_resolve/f/x.js: -------------------------------------------------------------------------------- 1 | module.exports = 999 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/browser_field_resolve/g/main.js: -------------------------------------------------------------------------------- 1 | try { var x = require('./x') } catch (err) {} 2 | console.log(x) 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/browser_field_resolve/g/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "browser": { 3 | "./x.js": false 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/browserify/test/browser_field_resolve/g/x.js: -------------------------------------------------------------------------------- 1 | module.exports = 1000 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/browser_field_resolve/h/main.js: -------------------------------------------------------------------------------- 1 | try { var x = require('./x.js') } catch (err) {} 2 | console.log(x) 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/browser_field_resolve/h/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "browser": { 3 | "./x": false 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/browserify/test/browser_field_resolve/h/x.js: -------------------------------------------------------------------------------- 1 | module.exports = 1000 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/browser_field_resolve/i/browser.js: -------------------------------------------------------------------------------- 1 | module.exports = 5000 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/browser_field_resolve/i/main.js: -------------------------------------------------------------------------------- 1 | var x = require('./x.js') 2 | console.log(x) 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/browser_field_resolve/i/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "browser": { 3 | "./x": "./browser" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/browserify/test/browser_field_resolve/i/x.js: -------------------------------------------------------------------------------- 1 | module.exports = 1000 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/browser_field_resolve/j/browser.js: -------------------------------------------------------------------------------- 1 | module.exports = 5000 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/browser_field_resolve/j/main.js: -------------------------------------------------------------------------------- 1 | var x = require('./x') 2 | console.log(x) 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/browser_field_resolve/j/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "browser": { 3 | "./x.js": "./browser.js" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/browserify/test/browser_field_resolve/j/x.js: -------------------------------------------------------------------------------- 1 | module.exports = 1000 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/browser_field_resolve/k/main.js: -------------------------------------------------------------------------------- 1 | var zzz = require('x/zzz') 2 | console.log(zzz) 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/browser_field_resolve/k/node_modules/x/hey.js: -------------------------------------------------------------------------------- 1 | module.exports = 3000 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/browser_field_resolve/k/node_modules/x/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "browser": { 3 | "./zzz": "./hey" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/browserify/test/browser_field_resolve/l/main.js: -------------------------------------------------------------------------------- 1 | var zzz = require('x/zzz') 2 | console.log(zzz) 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/browser_field_resolve/l/node_modules/x/hey.js: -------------------------------------------------------------------------------- 1 | module.exports = 3000 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/browser_field_resolve/l/node_modules/x/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "browser": { 3 | "./zzz.js": "./hey" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/browserify/test/bundle-bundle-external/bar.js: -------------------------------------------------------------------------------- 1 | module.exports = 'bar'; 2 | done(); 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/bundle-bundle-external/baz.js: -------------------------------------------------------------------------------- 1 | var foo = require('./foo'); 2 | assert.equal(foo, 'foo'); 3 | done(); 4 | -------------------------------------------------------------------------------- /node_modules/browserify/test/bundle-bundle-external/foo.js: -------------------------------------------------------------------------------- 1 | var bar = require('./bar'); 2 | assert.equal(bar, 'bar'); 3 | 4 | module.exports = 'foo'; 5 | done(); 6 | -------------------------------------------------------------------------------- /node_modules/browserify/test/bundle_external/boop.js: -------------------------------------------------------------------------------- 1 | var robot = require('./robot.js'); 2 | var trex = require('t-rex'); 3 | 4 | module.exports = function (n) { return robot(n) * trex }; 5 | -------------------------------------------------------------------------------- /node_modules/browserify/test/bundle_external/main.js: -------------------------------------------------------------------------------- 1 | var beep = require('beep'); 2 | var boop = require('./boop.js'); 3 | 4 | t.equal(boop(beep), 560); 5 | -------------------------------------------------------------------------------- /node_modules/browserify/test/bundle_external/robot.js: -------------------------------------------------------------------------------- 1 | module.exports = function (n) { return n + 1 }; 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/catch/main.js: -------------------------------------------------------------------------------- 1 | require('./no_such_file'); 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/circular/a.js: -------------------------------------------------------------------------------- 1 | exports.a = 1; 2 | exports.b = require('./b'); 3 | exports.a = 5; 4 | -------------------------------------------------------------------------------- /node_modules/browserify/test/circular/b.js: -------------------------------------------------------------------------------- 1 | module.exports = 2 + require('./a').a 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/circular/main.js: -------------------------------------------------------------------------------- 1 | t.deepEqual(require('./a.js'), { a: 5, b: 3 }); 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/coffee_bin/main.coffee: -------------------------------------------------------------------------------- 1 | console.log "hello world!" 2 | require './x.coffee' 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/coffee_bin/x.coffee: -------------------------------------------------------------------------------- 1 | console.log "from x!" 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/coffeeify/main.coffee: -------------------------------------------------------------------------------- 1 | process.nextTick -> 2 | console.log 'eyo' 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/comment/main.js: -------------------------------------------------------------------------------- 1 | ex(1234) 2 | // test -------------------------------------------------------------------------------- /node_modules/browserify/test/cycle/mod1/a.js: -------------------------------------------------------------------------------- 1 | require('./b') -------------------------------------------------------------------------------- /node_modules/browserify/test/cycle/mod1/b.js: -------------------------------------------------------------------------------- 1 | require('./a') -------------------------------------------------------------------------------- /node_modules/browserify/test/cycle/mod2/a.js: -------------------------------------------------------------------------------- 1 | require('./b') -------------------------------------------------------------------------------- /node_modules/browserify/test/cycle/mod2/b.js: -------------------------------------------------------------------------------- 1 | require('./a') -------------------------------------------------------------------------------- /node_modules/browserify/test/debug_standalone/x.js: -------------------------------------------------------------------------------- 1 | module.exports = 555 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/delay/diverted.js: -------------------------------------------------------------------------------- 1 | console.log(900) 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/delay/main.js: -------------------------------------------------------------------------------- 1 | console.log(500) 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/dollar/dollar/index.js: -------------------------------------------------------------------------------- 1 | // foo $ bar $ baz 2 | 3 | var $ = function (x) { 4 | return x * 100; 5 | }; 6 | 7 | module.exports = $; 8 | -------------------------------------------------------------------------------- /node_modules/browserify/test/double_buffer/explicit.js: -------------------------------------------------------------------------------- 1 | module.exports = require('buffer').Buffer 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/double_buffer/implicit.js: -------------------------------------------------------------------------------- 1 | module.exports = Buffer 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/double_buffer/main.js: -------------------------------------------------------------------------------- 1 | var implicit = require('./implicit.js'); 2 | var explicit = require('./explicit.js'); 3 | 4 | t.equal(implicit, explicit); 5 | -------------------------------------------------------------------------------- /node_modules/browserify/test/double_bundle_error/main.js: -------------------------------------------------------------------------------- 1 | done(require('./one'), require('./two')); -------------------------------------------------------------------------------- /node_modules/browserify/test/double_bundle_error/needs_three.js: -------------------------------------------------------------------------------- 1 | require("three"); 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/double_bundle_error/one.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/double_bundle_error/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "browser": { 3 | "three": "./three.js" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/browserify/test/double_bundle_error/three.js: -------------------------------------------------------------------------------- 1 | require('./nosuchfile.js'); 2 | 3 | module.exports = 3; 4 | -------------------------------------------------------------------------------- /node_modules/browserify/test/double_bundle_error/two.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./three.js') - 1; 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/double_bundle_json/a.json: -------------------------------------------------------------------------------- 1 | {"x":500} 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/double_bundle_json/b.json: -------------------------------------------------------------------------------- 1 | {"x":500} 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/double_bundle_json/index.js: -------------------------------------------------------------------------------- 1 | var a = require('./a.json'); 2 | var b = require('./b.json'); 3 | 4 | console.log('a=' + a.x); 5 | console.log('b=' + b.x); 6 | -------------------------------------------------------------------------------- /node_modules/browserify/test/dup/foo-dup.js: -------------------------------------------------------------------------------- 1 | // something on first line 2 | module.exports = function () { 3 | console.log('I like to duplicate myself'); 4 | }; 5 | -------------------------------------------------------------------------------- /node_modules/browserify/test/dup/foo.js: -------------------------------------------------------------------------------- 1 | // something on first line 2 | module.exports = function () { 3 | console.log('I like to duplicate myself'); 4 | }; 5 | -------------------------------------------------------------------------------- /node_modules/browserify/test/dup/index.js: -------------------------------------------------------------------------------- 1 | var foo = require('./foo'); 2 | var foodup = require('./foo-dup'); 3 | 4 | foo(); 5 | foodup(); 6 | -------------------------------------------------------------------------------- /node_modules/browserify/test/entry/main.js: -------------------------------------------------------------------------------- 1 | done(require('./one'), require('./two')); -------------------------------------------------------------------------------- /node_modules/browserify/test/entry/needs_three.js: -------------------------------------------------------------------------------- 1 | require("three"); 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/entry/one.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/entry/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "browser": { 3 | "three": "./three.js" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/browserify/test/entry/three.js: -------------------------------------------------------------------------------- 1 | module.exports = 3; 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/entry/two.js: -------------------------------------------------------------------------------- 1 | module.exports = 2; 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/entry_exec/fail.js: -------------------------------------------------------------------------------- 1 | t.fail('only entry files should get executed right away'); 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/entry_exec/main.js: -------------------------------------------------------------------------------- 1 | t.ok(true); 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/entry_expose/main.js: -------------------------------------------------------------------------------- 1 | console.log('wow'); 2 | module.exports = 555; 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/error_code/src.js: -------------------------------------------------------------------------------- 1 | var x = { 2 | var y = 6; 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/export/entry.js: -------------------------------------------------------------------------------- 1 | // nop 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/external/main.js: -------------------------------------------------------------------------------- 1 | t.equal(require('freelist')(5), 1005); 2 | t.equal(require('./x.js')(6), 1016); 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/external/x.js: -------------------------------------------------------------------------------- 1 | var fl = require('freelist'); 2 | 3 | module.exports = function (n) { return fl(n) + 10 }; 4 | -------------------------------------------------------------------------------- /node_modules/browserify/test/external_args/main.js: -------------------------------------------------------------------------------- 1 | try { 2 | var Backbone = require('backbone'); 3 | throw new Error('module included'); 4 | } catch (e) { 5 | if (e.message === 'module included') { 6 | throw e; 7 | } else { 8 | t.ok(true); 9 | } 10 | } -------------------------------------------------------------------------------- /node_modules/browserify/test/external_shim/bundle1.js: -------------------------------------------------------------------------------- 1 | exports.shim = require('shim'); 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/external_shim/bundle2.js: -------------------------------------------------------------------------------- 1 | exports.shim = require('shim'); 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/external_shim/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "browser": { 3 | "shim": "./shim.js" 4 | } 5 | } -------------------------------------------------------------------------------- /node_modules/browserify/test/external_shim/shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanlon/text-signature/f7c1978d459fa4d38b3379991011f269cfeb4b87/node_modules/browserify/test/external_shim/shim.js -------------------------------------------------------------------------------- /node_modules/browserify/test/externalize/beep.js: -------------------------------------------------------------------------------- 1 | var robot = require('./robot.js'); 2 | console.log(robot('beep')); -------------------------------------------------------------------------------- /node_modules/browserify/test/externalize/boop.js: -------------------------------------------------------------------------------- 1 | var robot = require('./robot.js'); 2 | console.log(robot('boop')); -------------------------------------------------------------------------------- /node_modules/browserify/test/externalize/robot.js: -------------------------------------------------------------------------------- 1 | module.exports = function (s) { return s.toUpperCase() + '!' }; -------------------------------------------------------------------------------- /node_modules/browserify/test/fake/fake_fs.js: -------------------------------------------------------------------------------- 1 | exports.party = function () { return 'PaRtY!1!1!' }; 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/fake/main.js: -------------------------------------------------------------------------------- 1 | var fs = require('fs'); 2 | t.equal(fs.party(), 'PaRtY!1!1!'); 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/field/miss.js: -------------------------------------------------------------------------------- 1 | module.exports = require('z-miss') 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/field/node_modules/z-miss/browser.js: -------------------------------------------------------------------------------- 1 | module.exports = 'browser'; 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/field/node_modules/z-miss/main.js: -------------------------------------------------------------------------------- 1 | module.exports = '!browser'; 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/field/node_modules/z-miss/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main" : "main.js", 3 | "browserify" : {} 4 | } 5 | -------------------------------------------------------------------------------- /node_modules/browserify/test/field/node_modules/z-object/browser.js: -------------------------------------------------------------------------------- 1 | module.exports = 'browser'; 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/field/node_modules/z-object/main.js: -------------------------------------------------------------------------------- 1 | module.exports = '!browser'; 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/field/node_modules/z-object/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main" : "main.js", 3 | "browserify" : { "main.js" : "browser.js" } 4 | } 5 | -------------------------------------------------------------------------------- /node_modules/browserify/test/field/node_modules/z-string/browser.js: -------------------------------------------------------------------------------- 1 | module.exports = 'browser'; 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/field/node_modules/z-string/main.js: -------------------------------------------------------------------------------- 1 | module.exports = '!browser'; 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/field/node_modules/z-string/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main" : "main.js", 3 | "browserify" : "browser.js" 4 | } 5 | -------------------------------------------------------------------------------- /node_modules/browserify/test/field/node_modules/z-sub/browser/a.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./b'); 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/field/node_modules/z-sub/browser/b.js: -------------------------------------------------------------------------------- 1 | module.exports = 'browser'; 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/field/node_modules/z-sub/main.js: -------------------------------------------------------------------------------- 1 | module.exports = '!browser'; 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/field/node_modules/z-sub/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main" : "main.js", 3 | "browserify" : "browser/a.js" 4 | } 5 | -------------------------------------------------------------------------------- /node_modules/browserify/test/field/object.js: -------------------------------------------------------------------------------- 1 | module.exports = require('z-object') 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/field/string.js: -------------------------------------------------------------------------------- 1 | module.exports = require('z-string') 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/field/sub.js: -------------------------------------------------------------------------------- 1 | module.exports = require('z-sub') 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/glob/a.js: -------------------------------------------------------------------------------- 1 | console.log('a'); 2 | 3 | try { require('./vendor/x.js') } 4 | catch (err) { console.log('!x') } 5 | 6 | require('./lib/z.js') 7 | -------------------------------------------------------------------------------- /node_modules/browserify/test/glob/b.js: -------------------------------------------------------------------------------- 1 | console.log('b'); 2 | 3 | try { require('./vendor/y.js') } 4 | catch (err) { console.log('!y') } 5 | 6 | -------------------------------------------------------------------------------- /node_modules/browserify/test/glob/lib/z.js: -------------------------------------------------------------------------------- 1 | console.log('z'); 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/glob/vendor/x.js: -------------------------------------------------------------------------------- 1 | console.log('x'); 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/glob/vendor/y.js: -------------------------------------------------------------------------------- 1 | console.log('y'); 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/global/buffer.js: -------------------------------------------------------------------------------- 1 | t.equal(Buffer('xyz').toString('base64'), 'eHl6'); 2 | t.equal(Buffer('eHl6', 'base64').toString(), 'xyz'); 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/global/filename.js: -------------------------------------------------------------------------------- 1 | exports.filename = __filename; 2 | exports.dirname = __dirname; 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/global/main.js: -------------------------------------------------------------------------------- 1 | t.equal(a, 555); 2 | t.equal(a, global.a); 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/global/node_modules/aaa/index.js: -------------------------------------------------------------------------------- 1 | exports.filename = __filename; 2 | exports.dirname = __dirname; 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/global/node_modules/robot/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/beep'); 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/global/node_modules/robot/lib/beep.js: -------------------------------------------------------------------------------- 1 | exports.filename = __filename; 2 | exports.dirname = __dirname; 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/global/tick.js: -------------------------------------------------------------------------------- 1 | process.nextTick(function () { 2 | t.ok(true); 3 | }); 4 | -------------------------------------------------------------------------------- /node_modules/browserify/test/global_recorder/main.js: -------------------------------------------------------------------------------- 1 | console.log('wow'); 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/hash/foo/other.js: -------------------------------------------------------------------------------- 1 | module.exports = 5; 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/hash/foo/two.js: -------------------------------------------------------------------------------- 1 | // FILE CONTENTS 2 | module.exports = 111 * require('./other.js'); 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/hash/main.js: -------------------------------------------------------------------------------- 1 | t.equal(require('./foo/two.js'), 555); 2 | t.equal(require('./one.js'), 333); 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/hash/one.js: -------------------------------------------------------------------------------- 1 | // FILE CONTENTS 2 | module.exports = 111 * require('./other.js'); 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/hash/other.js: -------------------------------------------------------------------------------- 1 | module.exports = 3; 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/hash_instance_context/one/dir/f.js: -------------------------------------------------------------------------------- 1 | // FILE F ONE 2 | var G = require('./g.js'); 3 | module.exports = function () { return 111 * G }; 4 | -------------------------------------------------------------------------------- /node_modules/browserify/test/hash_instance_context/one/dir/g.js: -------------------------------------------------------------------------------- 1 | // FILE G ONE 2 | module.exports = 3 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/hash_instance_context/one/f.js: -------------------------------------------------------------------------------- 1 | // FILE F ONE 2 | var G = require('./g.js'); 3 | module.exports = function () { return 111 * G }; 4 | -------------------------------------------------------------------------------- /node_modules/browserify/test/hash_instance_context/one/g.js: -------------------------------------------------------------------------------- 1 | // FILE G ONE 2 | module.exports = 5 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/hash_instance_context/three/dir/f.js: -------------------------------------------------------------------------------- 1 | // FILE F THREE 2 | var G = require('./g.js'); 3 | module.exports = function () { return 111 * G }; 4 | -------------------------------------------------------------------------------- /node_modules/browserify/test/hash_instance_context/three/dir/g.js: -------------------------------------------------------------------------------- 1 | // FILE G THREE 2 | module.exports = require('./h.js') + 1; 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/hash_instance_context/three/dir/h.js: -------------------------------------------------------------------------------- 1 | // FILE H THREE 2 | module.exports = 4 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/hash_instance_context/three/f.js: -------------------------------------------------------------------------------- 1 | // FILE F THREE 2 | var G = require('./g.js'); 3 | module.exports = function () { return 111 * G }; 4 | -------------------------------------------------------------------------------- /node_modules/browserify/test/hash_instance_context/three/g.js: -------------------------------------------------------------------------------- 1 | // FILE G THREE 2 | module.exports = require('./h.js') + 1; 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/hash_instance_context/three/h.js: -------------------------------------------------------------------------------- 1 | // FILE H THREE 2 | module.exports = 4 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/hash_instance_context/two/dir/f.js: -------------------------------------------------------------------------------- 1 | // FILE F TWO 2 | var G = require('./g.js'); 3 | module.exports = function () { return 111 * G }; 4 | -------------------------------------------------------------------------------- /node_modules/browserify/test/hash_instance_context/two/dir/g.js: -------------------------------------------------------------------------------- 1 | // FILE G TWO 2 | module.exports = require('./h.js') + 1; 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/hash_instance_context/two/dir/h.js: -------------------------------------------------------------------------------- 1 | // FILE H TWO 2 | module.exports = 2 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/hash_instance_context/two/f.js: -------------------------------------------------------------------------------- 1 | // FILE F TWO 2 | var G = require('./g.js'); 3 | module.exports = function () { return 111 * G }; 4 | -------------------------------------------------------------------------------- /node_modules/browserify/test/hash_instance_context/two/g.js: -------------------------------------------------------------------------------- 1 | // FILE G TWO 2 | module.exports = require('./h.js') + 1; 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/hash_instance_context/two/h.js: -------------------------------------------------------------------------------- 1 | // FILE H TWO 2 | module.exports = 4 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/identical/main.js: -------------------------------------------------------------------------------- 1 | var x = require('./x'); 2 | var y = require('./y'); 3 | console.log(x()); 4 | console.log(x()); 5 | console.log(y()); 6 | console.log(y()); 7 | -------------------------------------------------------------------------------- /node_modules/browserify/test/identical/x.js: -------------------------------------------------------------------------------- 1 | var i = 0; 2 | module.exports = function () { return i++ }; 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/identical/y.js: -------------------------------------------------------------------------------- 1 | var i = 0; 2 | module.exports = function () { return i++ }; 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/identical_different/main.js: -------------------------------------------------------------------------------- 1 | var x = require('./x'); 2 | var y = require('./wow/y'); 3 | console.log(x()); 4 | console.log(x()); 5 | console.log(y()); 6 | console.log(y()); 7 | -------------------------------------------------------------------------------- /node_modules/browserify/test/identical_different/node_modules/op/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function (n) { 2 | return n + 1; 3 | }; 4 | -------------------------------------------------------------------------------- /node_modules/browserify/test/identical_different/wow/node_modules/op/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function (n) { 2 | return (n+1) * 10; 3 | }; 4 | -------------------------------------------------------------------------------- /node_modules/browserify/test/identical_different/wow/y.js: -------------------------------------------------------------------------------- 1 | var op = require('op'); 2 | var i = 0; 3 | module.exports = function () { i = op(i); return i }; 4 | -------------------------------------------------------------------------------- /node_modules/browserify/test/identical_different/x.js: -------------------------------------------------------------------------------- 1 | var op = require('op'); 2 | var i = 0; 3 | module.exports = function () { i = op(i); return i }; 4 | -------------------------------------------------------------------------------- /node_modules/browserify/test/ignore/by-id.js: -------------------------------------------------------------------------------- 1 | t.deepEqual(require('events'), {}); 2 | t.deepEqual(require('bad id'), {}); 3 | t.deepEqual(require('beep'), {}); -------------------------------------------------------------------------------- /node_modules/browserify/test/ignore/by-relative.js: -------------------------------------------------------------------------------- 1 | /** 2 | * This test is to check to make sure that files that are ignored do not get 3 | * bundled when referenced with a nested relative path. 4 | */ 5 | t.deepEqual(require('./relative'), {}); 6 | -------------------------------------------------------------------------------- /node_modules/browserify/test/ignore/double-skip.js: -------------------------------------------------------------------------------- 1 | t.deepEqual(require('./skip.js'), {}); 2 | t.deepEqual(require('./double-skip/index'), {foo: 'bar'}); -------------------------------------------------------------------------------- /node_modules/browserify/test/ignore/double-skip/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./skip.js'); -------------------------------------------------------------------------------- /node_modules/browserify/test/ignore/double-skip/skip.js: -------------------------------------------------------------------------------- 1 | // this module should return something 2 | 3 | module.exports = { 4 | foo: 'bar' 5 | }; 6 | -------------------------------------------------------------------------------- /node_modules/browserify/test/ignore/ignored/skip.js: -------------------------------------------------------------------------------- 1 | t.fail('this file should have been skipped'); 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/ignore/main.js: -------------------------------------------------------------------------------- 1 | t.deepEqual(require('./skip.js'), {}); 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/ignore/relative/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('../ignored/skip.js'); -------------------------------------------------------------------------------- /node_modules/browserify/test/ignore/skip.js: -------------------------------------------------------------------------------- 1 | t.fail('this file should have been skipped'); 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/ignore_browser_field/main.js: -------------------------------------------------------------------------------- 1 | console.log(require('a')); 2 | console.log(require('b')); 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/ignore_browser_field/node_modules/a/browser.js: -------------------------------------------------------------------------------- 1 | module.exports = 'A:BROWSER' 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/ignore_browser_field/node_modules/a/main.js: -------------------------------------------------------------------------------- 1 | module.exports = 'A:NODE' 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/ignore_browser_field/node_modules/a/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "a", 3 | "version": "1.0.0", 4 | "main": "main.js", 5 | "browser": "browser.js" 6 | } 7 | -------------------------------------------------------------------------------- /node_modules/browserify/test/ignore_browser_field/node_modules/b/browser-x.js: -------------------------------------------------------------------------------- 1 | module.exports = 'browser-x.js' 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/ignore_browser_field/node_modules/b/main.js: -------------------------------------------------------------------------------- 1 | module.exports = ('b:' + require('./x.js')).toUpperCase(); 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/ignore_browser_field/node_modules/b/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "b", 3 | "version": "1.0.0", 4 | "main": "main.js", 5 | "browser": { 6 | "./x.js": "./browser-x.js" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /node_modules/browserify/test/ignore_browser_field/node_modules/b/x.js: -------------------------------------------------------------------------------- 1 | module.exports = 'x.js'; 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/ignore_missing/main.js: -------------------------------------------------------------------------------- 1 | require('./no_such_file'); 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/json/beep.json: -------------------------------------------------------------------------------- 1 | { 2 | "beep" : "boop", 3 | "x" : 555 4 | } 5 | -------------------------------------------------------------------------------- /node_modules/browserify/test/json/evil-chars.json: -------------------------------------------------------------------------------- 1 | { 2 | "evil": " " 3 | } 4 | -------------------------------------------------------------------------------- /node_modules/browserify/test/json/evil.js: -------------------------------------------------------------------------------- 1 | ex(require('./evil-chars.json')); 2 | ex(require('./evil-chars')); 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/json/main.js: -------------------------------------------------------------------------------- 1 | ex(require('./beep.json')); 2 | ex(require('./beep')); 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/maxlisteners/main.js: -------------------------------------------------------------------------------- 1 | var EventEmitter = require('events').EventEmitter 2 | var ee = new EventEmitter; 3 | ee.setMaxListeners(5); 4 | -------------------------------------------------------------------------------- /node_modules/browserify/test/multi_bundle/a.js: -------------------------------------------------------------------------------- 1 | var b = require('./b'); 2 | t.equal(b, 'foo'); 3 | module.exports = 'bar'; 4 | -------------------------------------------------------------------------------- /node_modules/browserify/test/multi_bundle/b.js: -------------------------------------------------------------------------------- 1 | module.exports = 'foo'; 2 | 3 | // incremented on require ./b 4 | baton.times++; 5 | 6 | -------------------------------------------------------------------------------- /node_modules/browserify/test/multi_bundle/c.js: -------------------------------------------------------------------------------- 1 | var b = require('./b'); 2 | var a = require('./a'); 3 | t.equal(b, 'foo'); 4 | t.equal(a, 'bar'); 5 | -------------------------------------------------------------------------------- /node_modules/browserify/test/multi_entry/a.js: -------------------------------------------------------------------------------- 1 | times ++; 2 | t.equal(times, 1); 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/multi_entry/b.js: -------------------------------------------------------------------------------- 1 | times ++; 2 | t.equal(times, 2); 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/multi_entry/c.js: -------------------------------------------------------------------------------- 1 | times ++; 2 | t.equal(times, 3); 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/multi_entry_cross_require/a.js: -------------------------------------------------------------------------------- 1 | times ++; 2 | t.equal(times, 1); 3 | 4 | var b = require('./lib/b'); 5 | t.equal(times, 2); 6 | 7 | b.foo(); 8 | t.equal(times, 3); 9 | -------------------------------------------------------------------------------- /node_modules/browserify/test/multi_entry_cross_require/c.js: -------------------------------------------------------------------------------- 1 | times++; 2 | t.equal(times, 4); 3 | 4 | var b = require('./lib/b'); 5 | b.foo(); 6 | 7 | t.equal(times, 5); 8 | -------------------------------------------------------------------------------- /node_modules/browserify/test/multi_entry_cross_require/lib/b.js: -------------------------------------------------------------------------------- 1 | times++; 2 | 3 | module.exports.foo = function() { 4 | times++; 5 | }; 6 | -------------------------------------------------------------------------------- /node_modules/browserify/test/multi_require/a.js: -------------------------------------------------------------------------------- 1 | module.exports = function() { 2 | return 'a'; 3 | } 4 | -------------------------------------------------------------------------------- /node_modules/browserify/test/multi_require/main.js: -------------------------------------------------------------------------------- 1 | var localA = require('./a.js'); 2 | var globalA = require('a'); 3 | 4 | t.equal(localA, globalA); 5 | -------------------------------------------------------------------------------- /node_modules/browserify/test/multi_symlink/main.js: -------------------------------------------------------------------------------- 1 | require('./x.js'); 2 | require('./y.js'); 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/multi_symlink/x.js: -------------------------------------------------------------------------------- 1 | console.log('X'); 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/no_builtins/extra/fs.js: -------------------------------------------------------------------------------- 1 | exports.readFileSync = function () { return 'WHATEVER' }; 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/no_builtins/extra/tls.js: -------------------------------------------------------------------------------- 1 | console.log('WRITE CODE EVERY DAY'); 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/no_builtins/main.js: -------------------------------------------------------------------------------- 1 | var fs = require('fs'); 2 | var tls = require('tls'); 3 | 4 | console.log(fs.readFileSync(__dirname + '/x.txt', 'utf8')); 5 | -------------------------------------------------------------------------------- /node_modules/browserify/test/no_builtins/x.txt: -------------------------------------------------------------------------------- 1 | beep boop 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/node_modules/beep/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'boop' 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/node_modules/tr/index.js: -------------------------------------------------------------------------------- 1 | var through = require('through2'); 2 | 3 | module.exports = function () { 4 | return through(function (buf, enc, next) { 5 | this.push(buf.toString('utf8').replace(/X/g, 'Z')); 6 | next(); 7 | }); 8 | }; 9 | -------------------------------------------------------------------------------- /node_modules/browserify/test/noparse/a.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | a: true, 3 | b: require('./b') 4 | }; 5 | -------------------------------------------------------------------------------- /node_modules/browserify/test/noparse/b.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | b: true, 3 | 1: require('./dir1/1'), 4 | robot: require('robot') 5 | }; 6 | -------------------------------------------------------------------------------- /node_modules/browserify/test/noparse/dir1/1.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | 1: true, 3 | 2: require('./dir2/2') 4 | }; 5 | -------------------------------------------------------------------------------- /node_modules/browserify/test/noparse/dir1/dir2/2.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | 2: true 3 | }; 4 | -------------------------------------------------------------------------------- /node_modules/browserify/test/noparse/node_modules/robot/lib/beep.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | beep: true, 3 | boop: require('./boop') 4 | }; 5 | -------------------------------------------------------------------------------- /node_modules/browserify/test/noparse/node_modules/robot/lib/boop.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | boop: true 3 | }; 4 | -------------------------------------------------------------------------------- /node_modules/browserify/test/noparse/node_modules/robot/main.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | robot: true, 3 | beep: require('./lib/beep') 4 | }; 5 | -------------------------------------------------------------------------------- /node_modules/browserify/test/noparse/node_modules/robot/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "main.js" 3 | } 4 | -------------------------------------------------------------------------------- /node_modules/browserify/test/paths/main.js: -------------------------------------------------------------------------------- 1 | t.equal(require('aaa'), 'AX'); 2 | t.equal(require('bbb'), 'BY'); 3 | t.equal(require('ccc'), 'CX'); 4 | -------------------------------------------------------------------------------- /node_modules/browserify/test/paths/x/aaa/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'AX' 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/paths/x/ccc/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'CX' 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/paths/y/bbb/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'BY' 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/paths/y/ccc/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'CY' 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/pipeline_deps/bar.js: -------------------------------------------------------------------------------- 1 | module.exports = function (n) { 2 | return n * 100; 3 | }; 4 | -------------------------------------------------------------------------------- /node_modules/browserify/test/pipeline_deps/foo.js: -------------------------------------------------------------------------------- 1 | var bar = require('./bar'); 2 | 3 | module.exports = function (n) { 4 | return n * 111 + bar(n); 5 | }; 6 | -------------------------------------------------------------------------------- /node_modules/browserify/test/pipeline_deps/main.js: -------------------------------------------------------------------------------- 1 | var foo = require('./foo'); 2 | console.log('main: ' + foo(5)); 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/pipeline_deps/xyz.js: -------------------------------------------------------------------------------- 1 | var foo = require('./foo'); 2 | console.log('xyz: ' + foo(6)); 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/pkg/main.js: -------------------------------------------------------------------------------- 1 | console.log(555) 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/pkg/package.json: -------------------------------------------------------------------------------- 1 | { "beep": "boop" } 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/pkg_event/main.js: -------------------------------------------------------------------------------- 1 | console.log(require('aaa')) 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/pkg_event/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "pkg_event" 3 | } 4 | -------------------------------------------------------------------------------- /node_modules/browserify/test/plugin/main.js: -------------------------------------------------------------------------------- 1 | module.exports = 555 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/process/main.js: -------------------------------------------------------------------------------- 1 | process.nextTick(function () { 2 | done(require('./one'), require('./two')); 3 | }); 4 | -------------------------------------------------------------------------------- /node_modules/browserify/test/process/one.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/process/two.js: -------------------------------------------------------------------------------- 1 | module.exports = 2; 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/relative_dedupe/a/a.js: -------------------------------------------------------------------------------- 1 | module.exports = function() { 2 | console.log("a a") 3 | }; 4 | -------------------------------------------------------------------------------- /node_modules/browserify/test/relative_dedupe/a/b.js: -------------------------------------------------------------------------------- 1 | module.exports = function() { 2 | console.log("a b") 3 | }; 4 | -------------------------------------------------------------------------------- /node_modules/browserify/test/relative_dedupe/a/index.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | a: require("./a"), 3 | b: require("./b") 4 | }; 5 | -------------------------------------------------------------------------------- /node_modules/browserify/test/relative_dedupe/b/a.js: -------------------------------------------------------------------------------- 1 | module.exports = function() { 2 | console.log("b a") 3 | }; 4 | -------------------------------------------------------------------------------- /node_modules/browserify/test/relative_dedupe/b/b.js: -------------------------------------------------------------------------------- 1 | module.exports = function() { 2 | console.log("b b") 3 | }; 4 | -------------------------------------------------------------------------------- /node_modules/browserify/test/relative_dedupe/b/index.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | a: require("./a"), 3 | b: require("./b") 4 | }; 5 | -------------------------------------------------------------------------------- /node_modules/browserify/test/relative_dedupe/index.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | a: require("./a"), 3 | b: require("./b") 4 | }; 5 | -------------------------------------------------------------------------------- /node_modules/browserify/test/relative_dedupe/main.js: -------------------------------------------------------------------------------- 1 | var ix = require('./'); 2 | ix.a.a(); 3 | ix.a.b(); 4 | ix.b.a(); 5 | ix.b.b(); 6 | -------------------------------------------------------------------------------- /node_modules/browserify/test/require_expose/main.js: -------------------------------------------------------------------------------- 1 | foo = require('foo'); 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/require_expose/some_dep.js: -------------------------------------------------------------------------------- 1 | module.exports = 'some_dep'; 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/resolve_exposed/main.js: -------------------------------------------------------------------------------- 1 | var xyz = require('xyz'); 2 | console.log(xyz * 111); 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/resolve_exposed/x.js: -------------------------------------------------------------------------------- 1 | module.exports = 3 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/reverse_multi_bundle/arbitrary.js: -------------------------------------------------------------------------------- 1 | var i = 0; 2 | module.exports = function() { 3 | return ++i; 4 | }; 5 | 6 | // 175e62 7 | -------------------------------------------------------------------------------- /node_modules/browserify/test/reverse_multi_bundle/lazy.js: -------------------------------------------------------------------------------- 1 | t.equal( 2 | require("./shared")(),2, 3 | "lazy.js can use the shared library" 4 | ); 5 | t.equal( 6 | require("not/real")(),1, 7 | "lazy.js can use library code with arbitrary names" 8 | ); 9 | 10 | -------------------------------------------------------------------------------- /node_modules/browserify/test/reverse_multi_bundle/shared.js: -------------------------------------------------------------------------------- 1 | var i = 0; 2 | module.exports = function() { 3 | return ++i; 4 | }; 5 | 6 | // 77aa70 7 | -------------------------------------------------------------------------------- /node_modules/browserify/test/shared_symlink/app/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('shared') + require('foo') 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/shared_symlink/app/node_modules/foo/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 1234 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/shared_symlink/main.js: -------------------------------------------------------------------------------- 1 | console.log(require('./app')) 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/shared_symlink/shared/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('foo') * 2 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/shebang/foo.js: -------------------------------------------------------------------------------- 1 | #!/blah 2 | module.exports = 1234; 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/shebang/main.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | var foo = require('./foo'); 4 | t.equal(foo, 1234); 5 | -------------------------------------------------------------------------------- /node_modules/browserify/test/standalone/main.js: -------------------------------------------------------------------------------- 1 | module.exports = function (cb) { 2 | cb(require('./one'), require('./two')); 3 | }; -------------------------------------------------------------------------------- /node_modules/browserify/test/standalone/one.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/standalone/two.js: -------------------------------------------------------------------------------- 1 | module.exports = 2; 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/stream/bar.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./foo.js') * 4 / 3 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/stream/foo.js: -------------------------------------------------------------------------------- 1 | module.exports = 333 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/stream/main.js: -------------------------------------------------------------------------------- 1 | t.equal(require('./foo.js'), 333); 2 | t.equal(require('./bar.js'), 444); 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/subdep/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('qq'); 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/subdep/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies" : { 3 | "qq" : "*" 4 | }, 5 | "main" : "index.js" 6 | } 7 | -------------------------------------------------------------------------------- /node_modules/browserify/test/symlink_dedupe/main.js: -------------------------------------------------------------------------------- 1 | var A = require('./one/f.js'); 2 | var B = require('./one/dir/f.js'); 3 | t.equal(A, B); 4 | t.equal(A(), 555); 5 | t.equal(B(), 555); 6 | 7 | -------------------------------------------------------------------------------- /node_modules/browserify/test/symlink_dedupe/one/f.js: -------------------------------------------------------------------------------- 1 | // FILE F ONE 2 | var G = require('./g.js'); 3 | module.exports = function () { return 111 * G }; 4 | -------------------------------------------------------------------------------- /node_modules/browserify/test/symlink_dedupe/one/g.js: -------------------------------------------------------------------------------- 1 | // FILE G ONE 2 | module.exports = 5 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/syntax_cache/invalid.js: -------------------------------------------------------------------------------- 1 | var x = { 2 | var y = 6; 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/syntax_cache/valid.js: -------------------------------------------------------------------------------- 1 | var x = {}; 2 | var y = 6; 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/tr/f.js: -------------------------------------------------------------------------------- 1 | t.equal(XYZ, 909); 2 | module.exports = function (x) { return x + BBB } 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/tr/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "browserify": { 3 | "transform": [ "xyz" ] 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/browserify/test/tr/subdir/g.js: -------------------------------------------------------------------------------- 1 | module.exports = XYZ + 90; 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/tr_args/main.js: -------------------------------------------------------------------------------- 1 | t.equal(XXX * 5, 555); 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/tr_global/main.js: -------------------------------------------------------------------------------- 1 | console.log(require('x')); 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/tr_global/node_modules/tr/index.js: -------------------------------------------------------------------------------- 1 | var through = require('through2'); 2 | 3 | module.exports = function () { 4 | return through(function (buf, enc, next) { 5 | this.push(buf.toString('utf8').replace(/VAR/, 4)); 6 | next(); 7 | }); 8 | }; 9 | -------------------------------------------------------------------------------- /node_modules/browserify/test/tr_global/node_modules/x/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 111 * VAR 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/tr_global/node_modules/x/node_modules/tr/index.js: -------------------------------------------------------------------------------- 1 | var through = require('through2'); 2 | 3 | module.exports = function () { 4 | return through(function (buf, enc, next) { 5 | this.push(buf.toString('utf8').replace(/VAR/, 5)); 6 | next(); 7 | }); 8 | }; 9 | -------------------------------------------------------------------------------- /node_modules/browserify/test/tr_no_entry/main.js: -------------------------------------------------------------------------------- 1 | console.log('XXX'); 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/tr_once/main.js: -------------------------------------------------------------------------------- 1 | console.log('wow'); 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/tr_order/replace_aaa.js: -------------------------------------------------------------------------------- 1 | var through = require('through2'); 2 | 3 | module.exports = function(file) { 4 | return through(function (buf, enc, next) { 5 | this.push(String(buf) 6 | .replace(/AAA/g, '5') 7 | ); 8 | next(); 9 | }) 10 | } 11 | -------------------------------------------------------------------------------- /node_modules/browserify/test/tr_symlink/a-module/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 555 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/tr_symlink/app/main.js: -------------------------------------------------------------------------------- 1 | var a = require('aaa'); 2 | var b = require('bbb'); 3 | 4 | console.log(5); 5 | console.log(a); 6 | console.log(b); 7 | -------------------------------------------------------------------------------- /node_modules/browserify/test/tr_symlink/app/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "browserify": { 3 | "transform": [ "tr" ] 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/browserify/test/tr_symlink/b-module/ext.js: -------------------------------------------------------------------------------- 1 | module.exports = 777; 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/tr_symlink/b-module/index.js: -------------------------------------------------------------------------------- 1 | var ext = require('./ext'); 2 | module.exports = ext; 3 | -------------------------------------------------------------------------------- /node_modules/browserify/test/unicode/main.js: -------------------------------------------------------------------------------- 1 | done(require('./one'), require('./two')); -------------------------------------------------------------------------------- /node_modules/browserify/test/unicode/one.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/unicode/two.js: -------------------------------------------------------------------------------- 1 | module.exports = 2; 2 | -------------------------------------------------------------------------------- /node_modules/browserify/test/yield/f.js: -------------------------------------------------------------------------------- 1 | module.exports = function *() { 2 | for (var i = 0; i < 5; i++) { 3 | yield i; 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/browserify/test/yield/main.js: -------------------------------------------------------------------------------- 1 | var f = require('./f.js')(); 2 | for (var r = f.next(); !r.done; r = f.next()) { 3 | console.log(r.value); 4 | } 5 | -------------------------------------------------------------------------------- /node_modules/buffer-xor/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /node_modules/buffer-xor/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | before_install: 3 | - "npm install npm -g" 4 | node_js: 5 | - "0.12" 6 | env: 7 | - TEST_SUITE=standard 8 | - TEST_SUITE=unit 9 | script: "npm run-script $TEST_SUITE" 10 | -------------------------------------------------------------------------------- /node_modules/buffer-xor/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function xor (a, b) { 2 | var length = Math.min(a.length, b.length) 3 | var buffer = new Buffer(length) 4 | 5 | for (var i = 0; i < length; ++i) { 6 | buffer[i] = a[i] ^ b[i] 7 | } 8 | 9 | return buffer 10 | } 11 | -------------------------------------------------------------------------------- /node_modules/buffer-xor/inline.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./inplace') 2 | -------------------------------------------------------------------------------- /node_modules/buffer-xor/inplace.js: -------------------------------------------------------------------------------- 1 | module.exports = function xorInplace (a, b) { 2 | var length = Math.min(a.length, b.length) 3 | 4 | for (var i = 0; i < length; ++i) { 5 | a[i] = a[i] ^ b[i] 6 | } 7 | 8 | return a.slice(0, length) 9 | } 10 | -------------------------------------------------------------------------------- /node_modules/buffer/.npmignore: -------------------------------------------------------------------------------- 1 | .zuul.yml 2 | perf/ 3 | -------------------------------------------------------------------------------- /node_modules/buffer/bin/zuul-es6.yml: -------------------------------------------------------------------------------- 1 | ui: tape 2 | browsers: 3 | - name: chrome 4 | version: '-1..latest' 5 | - name: firefox 6 | version: '-1..latest' 7 | -------------------------------------------------------------------------------- /node_modules/builtin-status-codes/build.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | var fs = require('fs') 4 | var statusCodes = require('./') 5 | 6 | var code = 'module.exports = ' + JSON.stringify(statusCodes, null, 2) + '\n' 7 | 8 | fs.writeFileSync('browser.js', code) 9 | -------------------------------------------------------------------------------- /node_modules/builtin-status-codes/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = require('http').STATUS_CODES 4 | -------------------------------------------------------------------------------- /node_modules/cipher-base/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["standard"] 3 | } 4 | -------------------------------------------------------------------------------- /node_modules/cipher-base/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.11" 4 | - "0.10" 5 | - "0.12" 6 | - "iojs" 7 | -------------------------------------------------------------------------------- /node_modules/combine-source-map/.npmignore: -------------------------------------------------------------------------------- 1 | lib-cov 2 | *.seed 3 | *.log 4 | *.csv 5 | *.dat 6 | *.out 7 | *.pid 8 | *.gz 9 | 10 | pids 11 | logs 12 | results 13 | 14 | node_modules 15 | npm-debug.log 16 | tmp 17 | -------------------------------------------------------------------------------- /node_modules/combine-source-map/.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | language: node_js 3 | node_js: 4 | - "0.10" 5 | - "0.12" 6 | - "iojs-v2.4" 7 | before_install: 8 | - npm install --global npm 9 | -------------------------------------------------------------------------------- /node_modules/concat-map/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.4 4 | - 0.6 5 | -------------------------------------------------------------------------------- /node_modules/concat-map/example/map.js: -------------------------------------------------------------------------------- 1 | var concatMap = require('../'); 2 | var xs = [ 1, 2, 3, 4, 5, 6 ]; 3 | var ys = concatMap(xs, function (x) { 4 | return x % 2 ? [ x - 0.1, x, x + 0.1 ] : []; 5 | }); 6 | console.dir(ys); 7 | -------------------------------------------------------------------------------- /node_modules/concat-stream/node_modules/readable-stream/.npmignore: -------------------------------------------------------------------------------- 1 | build/ 2 | test/ 3 | examples/ 4 | fs.js 5 | zlib.js -------------------------------------------------------------------------------- /node_modules/concat-stream/node_modules/readable-stream/.zuul.yml: -------------------------------------------------------------------------------- 1 | ui: tape 2 | -------------------------------------------------------------------------------- /node_modules/concat-stream/node_modules/readable-stream/duplex.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_duplex.js") 2 | -------------------------------------------------------------------------------- /node_modules/concat-stream/node_modules/readable-stream/passthrough.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_passthrough.js") 2 | -------------------------------------------------------------------------------- /node_modules/concat-stream/node_modules/readable-stream/transform.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_transform.js") 2 | -------------------------------------------------------------------------------- /node_modules/concat-stream/node_modules/readable-stream/writable.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_writable.js") 2 | -------------------------------------------------------------------------------- /node_modules/console-browserify/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .monitor 3 | .*.swp 4 | .nodemonignore 5 | releases 6 | *.log 7 | *.err 8 | fleet.json 9 | public/browserify 10 | bin/*.json 11 | .bin 12 | build 13 | compile 14 | .lock-wscript 15 | -------------------------------------------------------------------------------- /node_modules/console-browserify/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - 0.9 5 | -------------------------------------------------------------------------------- /node_modules/constants-browserify/build.sh: -------------------------------------------------------------------------------- 1 | node -pe 'JSON.stringify(require("constants"), null, " ")' > constants.json 2 | -------------------------------------------------------------------------------- /node_modules/convert-source-map/.npmignore: -------------------------------------------------------------------------------- 1 | lib-cov 2 | *.seed 3 | *.log 4 | *.csv 5 | *.dat 6 | *.out 7 | *.pid 8 | *.gz 9 | 10 | pids 11 | logs 12 | results 13 | 14 | node_modules 15 | npm-debug.log 16 | tmp 17 | -------------------------------------------------------------------------------- /node_modules/convert-source-map/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - 0.10 5 | - 0.11 -------------------------------------------------------------------------------- /node_modules/core-util-is/README.md: -------------------------------------------------------------------------------- 1 | # core-util-is 2 | 3 | The `util.is*` functions introduced in Node v0.12. 4 | -------------------------------------------------------------------------------- /node_modules/create-ecdh/.npmignore: -------------------------------------------------------------------------------- 1 | test.js 2 | -------------------------------------------------------------------------------- /node_modules/create-ecdh/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - "0.10" 5 | - "0.11" 6 | - "0.12" 7 | - "iojs" -------------------------------------------------------------------------------- /node_modules/create-ecdh/index.js: -------------------------------------------------------------------------------- 1 | var createECDH = require('crypto').createECDH; 2 | 3 | module.exports = createECDH || require('./browser'); -------------------------------------------------------------------------------- /node_modules/create-hash/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /node_modules/create-hash/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | - "0.11" -------------------------------------------------------------------------------- /node_modules/create-hash/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('crypto').createHash; -------------------------------------------------------------------------------- /node_modules/create-hmac/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | - "0.11" -------------------------------------------------------------------------------- /node_modules/create-hmac/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('crypto').createHmac; -------------------------------------------------------------------------------- /node_modules/crypto-browserify/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /node_modules/crypto-browserify/.zuul.yml: -------------------------------------------------------------------------------- 1 | ui: tape 2 | -------------------------------------------------------------------------------- /node_modules/crypto-browserify/example/test.js: -------------------------------------------------------------------------------- 1 | var crypto = require('crypto') 2 | var abc = crypto.createHash('sha1').update('abc').digest('hex') 3 | console.log(abc) 4 | // require('hello').inlineCall().call2() 5 | -------------------------------------------------------------------------------- /node_modules/date-now/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .monitor 3 | .*.swp 4 | .nodemonignore 5 | releases 6 | *.log 7 | *.err 8 | fleet.json 9 | public/browserify 10 | bin/*.json 11 | .bin 12 | build 13 | compile 14 | .lock-wscript 15 | -------------------------------------------------------------------------------- /node_modules/date-now/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - 0.9 5 | -------------------------------------------------------------------------------- /node_modules/date-now/index.js: -------------------------------------------------------------------------------- 1 | module.exports = now 2 | 3 | function now() { 4 | return new Date().getTime() 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/date-now/test/static/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |