├── .gitignore ├── LICENSE ├── README.md ├── app.js ├── dist ├── angular.js ├── bundle.css ├── bundle.js └── index.html ├── index.css ├── node_modules └── demo-component │ ├── DemoController.js │ ├── index.css │ ├── index.js │ ├── node_modules │ ├── .bin │ │ └── browserify │ ├── browserify-shim │ │ ├── .jshintrc │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── examples │ │ │ ├── expose-jquery │ │ │ │ ├── Readme.md │ │ │ │ ├── build-diag.js │ │ │ │ ├── build.js │ │ │ │ ├── cli-diag.sh │ │ │ │ ├── cli.sh │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ └── entry.js │ │ │ │ └── package.json │ │ │ ├── shim-jquery-external │ │ │ │ ├── Readme.md │ │ │ │ ├── build-diag.js │ │ │ │ ├── config │ │ │ │ │ └── shim.js │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── entry.js │ │ │ │ │ └── vendor │ │ │ │ │ │ └── .npmignore │ │ │ │ └── package.json │ │ │ └── shim-jquery │ │ │ │ ├── Readme.md │ │ │ │ ├── build-diag.js │ │ │ │ ├── build.js │ │ │ │ ├── cli-diag.sh │ │ │ │ ├── cli.sh │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ ├── entry.js │ │ │ │ └── vendor │ │ │ │ │ └── .npmignore │ │ │ │ └── package.json │ │ ├── index.js │ │ ├── lib │ │ │ ├── debug.js │ │ │ ├── parse-inline-shims.js │ │ │ └── resolve-shims.js │ │ ├── node_modules │ │ │ ├── exposify │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── example │ │ │ │ │ ├── build.js │ │ │ │ │ ├── build.sh │ │ │ │ │ ├── index.html │ │ │ │ │ └── main.js │ │ │ │ ├── expose.js │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── detective │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── example │ │ │ │ │ │ │ ├── strings.js │ │ │ │ │ │ │ └── strings_src.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ ├── .bin │ │ │ │ │ │ │ │ ├── escodegen │ │ │ │ │ │ │ │ ├── esgenerate │ │ │ │ │ │ │ │ ├── esparse │ │ │ │ │ │ │ │ └── esvalidate │ │ │ │ │ │ │ ├── escodegen │ │ │ │ │ │ │ │ ├── LICENSE.BSD │ │ │ │ │ │ │ │ ├── LICENSE.source-map │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ │ │ ├── escodegen.js │ │ │ │ │ │ │ │ │ └── esgenerate.js │ │ │ │ │ │ │ │ ├── escodegen.js │ │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ │ └── source-map │ │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ │ │ ├── Makefile.dryice.js │ │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ │ ├── build │ │ │ │ │ │ │ │ │ │ ├── assert-shim.js │ │ │ │ │ │ │ │ │ │ ├── mini-require.js │ │ │ │ │ │ │ │ │ │ ├── prefix-source-map.jsm │ │ │ │ │ │ │ │ │ │ ├── prefix-utils.jsm │ │ │ │ │ │ │ │ │ │ ├── suffix-browser.js │ │ │ │ │ │ │ │ │ │ ├── suffix-source-map.jsm │ │ │ │ │ │ │ │ │ │ ├── suffix-utils.jsm │ │ │ │ │ │ │ │ │ │ ├── test-prefix.js │ │ │ │ │ │ │ │ │ │ └── test-suffix.js │ │ │ │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ │ │ ├── source-map.js │ │ │ │ │ │ │ │ │ │ └── source-map │ │ │ │ │ │ │ │ │ │ │ ├── array-set.js │ │ │ │ │ │ │ │ │ │ │ ├── base64-vlq.js │ │ │ │ │ │ │ │ │ │ │ ├── base64.js │ │ │ │ │ │ │ │ │ │ │ ├── binary-search.js │ │ │ │ │ │ │ │ │ │ │ ├── source-map-consumer.js │ │ │ │ │ │ │ │ │ │ │ ├── source-map-generator.js │ │ │ │ │ │ │ │ │ │ │ ├── source-node.js │ │ │ │ │ │ │ │ │ │ │ └── util.js │ │ │ │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ │ │ └── amdefine │ │ │ │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ │ │ ├── amdefine.js │ │ │ │ │ │ │ │ │ │ │ ├── intercept.js │ │ │ │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ │ ├── run-tests.js │ │ │ │ │ │ │ │ │ │ └── source-map │ │ │ │ │ │ │ │ │ │ ├── test-api.js │ │ │ │ │ │ │ │ │ │ ├── test-array-set.js │ │ │ │ │ │ │ │ │ │ ├── test-base64-vlq.js │ │ │ │ │ │ │ │ │ │ ├── test-base64.js │ │ │ │ │ │ │ │ │ │ ├── test-binary-search.js │ │ │ │ │ │ │ │ │ │ ├── test-dog-fooding.js │ │ │ │ │ │ │ │ │ │ ├── test-source-map-consumer.js │ │ │ │ │ │ │ │ │ │ ├── test-source-map-generator.js │ │ │ │ │ │ │ │ │ │ ├── test-source-node.js │ │ │ │ │ │ │ │ │ │ ├── test-util.js │ │ │ │ │ │ │ │ │ │ └── util.js │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ └── esprima │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ ├── ChangeLog │ │ │ │ │ │ │ │ ├── LICENSE.BSD │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ │ ├── esparse.js │ │ │ │ │ │ │ │ └── esvalidate.js │ │ │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ │ │ ├── doc │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── esprima.js │ │ │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ │ ├── detectnestedternary.js │ │ │ │ │ │ │ │ ├── findbooleantrap.js │ │ │ │ │ │ │ │ └── tokendist.js │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ ├── benchmarks.html │ │ │ │ │ │ │ │ ├── benchmarks.js │ │ │ │ │ │ │ │ ├── compare.html │ │ │ │ │ │ │ │ ├── compare.js │ │ │ │ │ │ │ │ ├── compat.html │ │ │ │ │ │ │ │ ├── compat.js │ │ │ │ │ │ │ │ ├── coverage.footer.html │ │ │ │ │ │ │ │ ├── coverage.header.html │ │ │ │ │ │ │ │ ├── coverage.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── module.html │ │ │ │ │ │ │ │ ├── module.js │ │ │ │ │ │ │ │ ├── reflect.js │ │ │ │ │ │ │ │ ├── run.js │ │ │ │ │ │ │ │ ├── runner.js │ │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── readme.markdown │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── both.js │ │ │ │ │ │ │ ├── chained.js │ │ │ │ │ │ │ ├── files │ │ │ │ │ │ │ ├── both.js │ │ │ │ │ │ │ ├── chained.js │ │ │ │ │ │ │ ├── isrequire.js │ │ │ │ │ │ │ ├── nested.js │ │ │ │ │ │ │ ├── shebang.js │ │ │ │ │ │ │ ├── sparse-array.js │ │ │ │ │ │ │ ├── strings.js │ │ │ │ │ │ │ └── word.js │ │ │ │ │ │ │ ├── isrequire.js │ │ │ │ │ │ │ ├── nested.js │ │ │ │ │ │ │ ├── parseopts.js │ │ │ │ │ │ │ ├── return.js │ │ │ │ │ │ │ ├── shebang.js │ │ │ │ │ │ │ ├── sparse-array.js │ │ │ │ │ │ │ ├── strings.js │ │ │ │ │ │ │ └── word.js │ │ │ │ │ ├── through2 │ │ │ │ │ │ ├── .jshintrc │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ ├── readable-stream │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── duplex.js │ │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ │ ├── _stream_duplex.js │ │ │ │ │ │ │ │ │ ├── _stream_passthrough.js │ │ │ │ │ │ │ │ │ ├── _stream_readable.js │ │ │ │ │ │ │ │ │ ├── _stream_transform.js │ │ │ │ │ │ │ │ │ └── _stream_writable.js │ │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ │ ├── core-util-is │ │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ │ ├── float.patch │ │ │ │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ │ │ │ └── util.js │ │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ │ └── util.js │ │ │ │ │ │ │ │ │ ├── inherits │ │ │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ │ ├── inherits.js │ │ │ │ │ │ │ │ │ │ ├── inherits_browser.js │ │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ │ │ │ ├── isarray │ │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ │ ├── build │ │ │ │ │ │ │ │ │ │ │ └── build.js │ │ │ │ │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ │ │ └── string_decoder │ │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ ├── passthrough.js │ │ │ │ │ │ │ │ ├── readable.js │ │ │ │ │ │ │ │ ├── transform.js │ │ │ │ │ │ │ │ └── writable.js │ │ │ │ │ │ │ └── xtend │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ ├── LICENCE │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── has-keys.js │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ ├── mutable.js │ │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ └── object-keys │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ ├── foreach.js │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ ├── isArguments.js │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ ├── shim.js │ │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ ├── foreach.js │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ ├── isArguments.js │ │ │ │ │ │ │ │ │ └── shim.js │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ ├── basic-test.js │ │ │ │ │ │ │ ├── bench.js │ │ │ │ │ │ │ ├── sauce.js │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ └── through2.js │ │ │ │ │ └── transformify │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── example │ │ │ │ │ │ └── upper-case.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ └── readable-stream │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── duplex.js │ │ │ │ │ │ │ ├── float.patch │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ ├── _stream_duplex.js │ │ │ │ │ │ │ ├── _stream_passthrough.js │ │ │ │ │ │ │ ├── _stream_readable.js │ │ │ │ │ │ │ ├── _stream_transform.js │ │ │ │ │ │ │ └── _stream_writable.js │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ ├── core-util-is │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── float.patch │ │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ │ └── util.js │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ └── util.js │ │ │ │ │ │ │ ├── inherits │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── inherits.js │ │ │ │ │ │ │ │ ├── inherits_browser.js │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ │ ├── isarray │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── build │ │ │ │ │ │ │ │ │ └── build.js │ │ │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ └── string_decoder │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ ├── passthrough.js │ │ │ │ │ │ │ ├── readable.js │ │ │ │ │ │ │ ├── transform.js │ │ │ │ │ │ │ └── writable.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── test │ │ │ │ │ │ └── index.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ ├── fixtures │ │ │ │ │ ├── jquery-only-spaces.js │ │ │ │ │ ├── jquery-only.js │ │ │ │ │ ├── jquery-three-d3.spread.js │ │ │ │ │ ├── jquery-three.js │ │ │ │ │ ├── lodash-noconflict.js │ │ │ │ │ └── three-only.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── jquery-only-spaces.js │ │ │ │ │ ├── jquery-only.js │ │ │ │ │ ├── jquery-three-d3.spread.js │ │ │ │ │ ├── jquery-three.js │ │ │ │ │ ├── lodash-noconflict.js │ │ │ │ │ └── util │ │ │ │ │ ├── run.js │ │ │ │ │ └── show.js │ │ │ ├── find-parent-dir │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── example │ │ │ │ │ └── git-repo-root.js │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ └── find-parent-dir.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 │ │ │ │ │ ├── faulty_basedir.js │ │ │ │ │ ├── filter.js │ │ │ │ │ ├── filter_sync.js │ │ │ │ │ ├── mock.js │ │ │ │ │ ├── mock_sync.js │ │ │ │ │ ├── node_path.js │ │ │ │ │ ├── node_path │ │ │ │ │ ├── x │ │ │ │ │ │ ├── aaa │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ └── ccc │ │ │ │ │ │ │ └── index.js │ │ │ │ │ └── y │ │ │ │ │ │ ├── bbb │ │ │ │ │ │ └── index.js │ │ │ │ │ │ └── ccc │ │ │ │ │ │ └── index.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 │ │ │ └── through │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE.APACHE2 │ │ │ │ ├── LICENSE.MIT │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ ├── readme.markdown │ │ │ │ └── test │ │ │ │ ├── auto-destroy.js │ │ │ │ ├── buffering.js │ │ │ │ ├── end.js │ │ │ │ └── index.js │ │ ├── package.json │ │ └── test │ │ │ ├── bower │ │ │ ├── components │ │ │ │ ├── jquery-ui │ │ │ │ │ ├── package.json │ │ │ │ │ └── ui │ │ │ │ │ │ └── jquery.ui.position.js │ │ │ │ └── jquery │ │ │ │ │ ├── jquery.js │ │ │ │ │ └── package.json │ │ │ ├── index.js │ │ │ └── package.json │ │ │ ├── bundle-deps.js │ │ │ ├── bundle-expose-globals.js │ │ │ ├── bundle-multideps.js │ │ │ ├── bundle-nodeps.js │ │ │ ├── bundle-pack-bower.js │ │ │ ├── bundle-packs.js │ │ │ ├── deps │ │ │ ├── extshim │ │ │ │ ├── config │ │ │ │ │ └── shim.js │ │ │ │ ├── main.js │ │ │ │ ├── package.json │ │ │ │ └── vendor │ │ │ │ │ ├── non-cjs-dep.js │ │ │ │ │ └── non-cjs.js │ │ │ └── inlineshim │ │ │ │ ├── main.js │ │ │ │ ├── package.json │ │ │ │ └── vendor │ │ │ │ ├── non-cjs-dep.js │ │ │ │ └── non-cjs.js │ │ │ ├── exposify │ │ │ ├── extshim │ │ │ │ ├── config │ │ │ │ │ └── shim.js │ │ │ │ ├── main.js │ │ │ │ ├── package.json │ │ │ │ └── vendor │ │ │ │ │ └── non-cjs.js │ │ │ └── inlineshim │ │ │ │ ├── main.js │ │ │ │ ├── package.json │ │ │ │ └── vendor │ │ │ │ └── non-cjs.js │ │ │ ├── multideps │ │ │ ├── extshim │ │ │ │ ├── config │ │ │ │ │ └── shim.js │ │ │ │ ├── main.js │ │ │ │ ├── package.json │ │ │ │ └── vendor │ │ │ │ │ ├── non-cjs-core.js │ │ │ │ │ ├── non-cjs-dep.js │ │ │ │ │ └── non-cjs.js │ │ │ └── inlineshim │ │ │ │ ├── main.js │ │ │ │ ├── package.json │ │ │ │ └── vendor │ │ │ │ ├── non-cjs-core.js │ │ │ │ ├── non-cjs-dep.js │ │ │ │ └── non-cjs.js │ │ │ ├── nodeps │ │ │ ├── extshim-exposed │ │ │ │ ├── config │ │ │ │ │ └── shim.js │ │ │ │ ├── main.js │ │ │ │ ├── package.json │ │ │ │ └── vendor │ │ │ │ │ └── non-cjs.js │ │ │ ├── extshim │ │ │ │ ├── config │ │ │ │ │ └── shim.js │ │ │ │ ├── main.js │ │ │ │ ├── package.json │ │ │ │ └── vendor │ │ │ │ │ └── non-cjs.js │ │ │ ├── inlineshim-exposed │ │ │ │ ├── main.js │ │ │ │ ├── package.json │ │ │ │ └── vendor │ │ │ │ │ └── non-cjs.js │ │ │ └── inlineshim │ │ │ │ ├── main.js │ │ │ │ ├── package.json │ │ │ │ └── vendor │ │ │ │ └── non-cjs.js │ │ │ ├── packs │ │ │ ├── main.js │ │ │ ├── package.json │ │ │ └── vendor │ │ │ │ └── non-cjs.js │ │ │ ├── parse-inline-shim.js │ │ │ ├── resolve-shims-bower.js │ │ │ ├── resolve-shims.js │ │ │ └── shim │ │ │ ├── fixtures │ │ │ ├── entry-requires-depend-on-jquery-and-_.js │ │ │ ├── entry-requires-depend-on-jquery.js │ │ │ ├── entry-requires-jquery.js │ │ │ ├── entry-requires-lib-with-global-problem.js │ │ │ ├── entry-requires-root-level-var.js │ │ │ ├── foo.js │ │ │ └── shims │ │ │ │ ├── crippled-jquery.js │ │ │ │ ├── lib-depending-on-jquery-and-_.js │ │ │ │ ├── lib-depending-on-jquery.js │ │ │ │ ├── lib-exporting-_.js │ │ │ │ ├── lib-with-exports-define-global-problem.js │ │ │ │ └── root-level-var.js │ │ │ ├── prebundle.js │ │ │ ├── shim-depends.js │ │ │ ├── shim-exports-define-window.js │ │ │ ├── shim-impress.js │ │ │ ├── shim-jquery.js │ │ │ ├── shim-root-level-var.js │ │ │ ├── shim-underscore.js │ │ │ ├── shim-zepto.js │ │ │ ├── shim.js │ │ │ └── utils │ │ │ └── test-lib.js │ ├── browserify │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── bin │ │ │ ├── advanced.txt │ │ │ ├── args.js │ │ │ ├── cmd.js │ │ │ └── usage.txt │ │ ├── bundle.js │ │ ├── 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 │ │ │ │ ├── foo.js │ │ │ │ ├── main.js │ │ │ │ └── wunder │ │ │ │ └── bar.js │ │ ├── index.js │ │ ├── lib │ │ │ ├── _empty.js │ │ │ ├── _exclude.js │ │ │ └── builtins.js │ │ ├── node_modules │ │ │ ├── .bin │ │ │ │ ├── browser-pack │ │ │ │ ├── deps-sort │ │ │ │ ├── insert-module-globals │ │ │ │ ├── module-deps │ │ │ │ └── umd │ │ │ ├── JSONStream │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE.APACHE2 │ │ │ │ ├── LICENSE.MIT │ │ │ │ ├── examples │ │ │ │ │ └── all_docs.js │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── jsonparse │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.markdown │ │ │ │ │ │ ├── bench.js │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ └── twitterfeed.js │ │ │ │ │ │ ├── jsonparse.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── samplejson │ │ │ │ │ │ │ ├── basic.json │ │ │ │ │ │ │ └── basic2.json │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── boundary.js │ │ │ │ │ │ │ ├── primitives.js │ │ │ │ │ │ │ └── utf8.js │ │ │ │ │ └── through │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE.APACHE2 │ │ │ │ │ │ ├── LICENSE.MIT │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── readme.markdown │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── auto-destroy.js │ │ │ │ │ │ ├── buffering.js │ │ │ │ │ │ ├── end.js │ │ │ │ │ │ └── index.js │ │ │ │ ├── package.json │ │ │ │ ├── readme.markdown │ │ │ │ └── test │ │ │ │ │ ├── bool.js │ │ │ │ │ ├── browser.js │ │ │ │ │ ├── destroy_missing.js │ │ │ │ │ ├── doubledot1.js │ │ │ │ │ ├── doubledot2.js │ │ │ │ │ ├── empty.js │ │ │ │ │ ├── fixtures │ │ │ │ │ ├── all_npm.json │ │ │ │ │ └── depth.json │ │ │ │ │ ├── fn.js │ │ │ │ │ ├── gen.js │ │ │ │ │ ├── multiple_objects.js │ │ │ │ │ ├── multiple_objects_error.js │ │ │ │ │ ├── parsejson.js │ │ │ │ │ ├── stringify.js │ │ │ │ │ ├── stringify_object.js │ │ │ │ │ ├── test.js │ │ │ │ │ ├── test2.js │ │ │ │ │ └── two-ways.js │ │ │ ├── assert │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── .zuul.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── assert.js │ │ │ │ ├── node_modules │ │ │ │ │ └── util │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── .zuul.yml │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── 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 │ │ │ │ ├── package.json │ │ │ │ └── test.js │ │ │ ├── browser-pack │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── _prelude.js │ │ │ │ ├── bin │ │ │ │ │ ├── cmd.js │ │ │ │ │ └── prepublish.js │ │ │ │ ├── example │ │ │ │ │ ├── foo.js │ │ │ │ │ ├── input.json │ │ │ │ │ ├── output.js │ │ │ │ │ ├── self.js │ │ │ │ │ └── sourcemap │ │ │ │ │ │ ├── input.json │ │ │ │ │ │ └── output.js │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── JSONStream │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE.APACHE2 │ │ │ │ │ │ ├── LICENSE.MIT │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ └── all_docs.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ ├── jsonparse │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ ├── README.markdown │ │ │ │ │ │ │ │ ├── bench.js │ │ │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ │ │ └── twitterfeed.js │ │ │ │ │ │ │ │ ├── jsonparse.js │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ ├── samplejson │ │ │ │ │ │ │ │ │ ├── basic.json │ │ │ │ │ │ │ │ │ └── basic2.json │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ ├── boundary.js │ │ │ │ │ │ │ │ │ ├── primitives.js │ │ │ │ │ │ │ │ │ └── utf8.js │ │ │ │ │ │ │ └── through │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ ├── LICENSE.APACHE2 │ │ │ │ │ │ │ │ ├── LICENSE.MIT │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ ├── readme.markdown │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ ├── buffering.js │ │ │ │ │ │ │ │ ├── end.js │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── readme.markdown │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── bool.js │ │ │ │ │ │ │ ├── destroy_missing.js │ │ │ │ │ │ │ ├── empty.js │ │ │ │ │ │ │ ├── fixtures │ │ │ │ │ │ │ └── all_npm.json │ │ │ │ │ │ │ ├── fn.js │ │ │ │ │ │ │ ├── gen.js │ │ │ │ │ │ │ ├── multiple_objects.js │ │ │ │ │ │ │ ├── multiple_objects_error.js │ │ │ │ │ │ │ ├── parsejson.js │ │ │ │ │ │ │ ├── stringify.js │ │ │ │ │ │ │ ├── stringify_object.js │ │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ │ ├── test2.js │ │ │ │ │ │ │ └── two-ways.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 │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ ├── 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.css │ │ │ │ │ │ │ │ │ └── map-file-comment.css.map │ │ │ │ │ │ │ │ │ └── map-file-comment.js │ │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ │ └── source-map │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ ├── Makefile.dryice.js │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── build │ │ │ │ │ │ │ │ ├── assert-shim.js │ │ │ │ │ │ │ │ ├── mini-require.js │ │ │ │ │ │ │ │ ├── prefix-source-map.jsm │ │ │ │ │ │ │ │ ├── prefix-utils.jsm │ │ │ │ │ │ │ │ ├── suffix-browser.js │ │ │ │ │ │ │ │ ├── suffix-source-map.jsm │ │ │ │ │ │ │ │ ├── suffix-utils.jsm │ │ │ │ │ │ │ │ ├── test-prefix.js │ │ │ │ │ │ │ │ └── test-suffix.js │ │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ ├── source-map.js │ │ │ │ │ │ │ │ └── source-map │ │ │ │ │ │ │ │ │ ├── array-set.js │ │ │ │ │ │ │ │ │ ├── base64-vlq.js │ │ │ │ │ │ │ │ │ ├── base64.js │ │ │ │ │ │ │ │ │ ├── binary-search.js │ │ │ │ │ │ │ │ │ ├── source-map-consumer.js │ │ │ │ │ │ │ │ │ ├── source-map-generator.js │ │ │ │ │ │ │ │ │ ├── source-node.js │ │ │ │ │ │ │ │ │ └── util.js │ │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ └── amdefine │ │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ ├── amdefine.js │ │ │ │ │ │ │ │ │ ├── intercept.js │ │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ ├── run-tests.js │ │ │ │ │ │ │ │ └── source-map │ │ │ │ │ │ │ │ ├── test-api.js │ │ │ │ │ │ │ │ ├── test-array-set.js │ │ │ │ │ │ │ │ ├── test-base64-vlq.js │ │ │ │ │ │ │ │ ├── test-base64.js │ │ │ │ │ │ │ │ ├── test-binary-search.js │ │ │ │ │ │ │ │ ├── test-dog-fooding.js │ │ │ │ │ │ │ │ ├── test-source-map-consumer.js │ │ │ │ │ │ │ │ ├── test-source-map-generator.js │ │ │ │ │ │ │ │ ├── test-source-node.js │ │ │ │ │ │ │ │ ├── test-util.js │ │ │ │ │ │ │ │ └── util.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── combine-source-map.js │ │ │ │ │ └── through │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE.APACHE2 │ │ │ │ │ │ ├── LICENSE.MIT │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── readme.markdown │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── auto-destroy.js │ │ │ │ │ │ ├── buffering.js │ │ │ │ │ │ ├── end.js │ │ │ │ │ │ └── index.js │ │ │ │ ├── package.json │ │ │ │ ├── prelude.js │ │ │ │ ├── readme.markdown │ │ │ │ └── test │ │ │ │ │ ├── comment.js │ │ │ │ │ ├── only_execute_entries.js │ │ │ │ │ ├── order.js │ │ │ │ │ ├── pack.js │ │ │ │ │ ├── raw.js │ │ │ │ │ ├── source-maps-existing.js │ │ │ │ │ ├── source-maps.js │ │ │ │ │ ├── this.js │ │ │ │ │ └── unicode.js │ │ │ ├── browser-resolve │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── README.md │ │ │ │ ├── empty.js │ │ │ │ ├── example │ │ │ │ │ ├── builtin.js │ │ │ │ │ ├── custom.js │ │ │ │ │ ├── custom │ │ │ │ │ │ ├── custom.js │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── resolve.js │ │ │ │ │ ├── skip.js │ │ │ │ │ └── skip │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ └── package.json │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ ├── core.js │ │ │ │ │ ├── false.js │ │ │ │ │ ├── fixtures-coffee │ │ │ │ │ └── foo.coffee │ │ │ │ │ ├── fixtures │ │ │ │ │ ├── foo.js │ │ │ │ │ └── node_modules │ │ │ │ │ │ ├── false │ │ │ │ │ │ ├── fake.js │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ └── ignore-me │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── module-a │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── module-b │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── module-c │ │ │ │ │ │ ├── bar.js │ │ │ │ │ │ ├── browser.js │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── module-d │ │ │ │ │ │ ├── browser.js │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── module-e │ │ │ │ │ │ ├── browser.js │ │ │ │ │ │ ├── foo.js │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── module-f │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ ├── browser.js │ │ │ │ │ │ │ ├── foo.js │ │ │ │ │ │ │ └── main.js │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── module-g │ │ │ │ │ │ ├── foobar-browser.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── module-h │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── module-i │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── module-j │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── module-k │ │ │ │ │ │ ├── browser.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ │ └── override-engine-shim │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── url-browser.js │ │ │ │ │ ├── local-coffee.js │ │ │ │ │ ├── local.js │ │ │ │ │ ├── mocha.opts │ │ │ │ │ ├── modules-coffee.js │ │ │ │ │ └── modules.js │ │ │ ├── browserify-zlib │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── README.md │ │ │ │ ├── node_modules │ │ │ │ │ └── pako │ │ │ │ │ │ ├── Gruntfile.js │ │ │ │ │ │ ├── HISTORY.md │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── bower.json │ │ │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ ├── buffer │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bundle.js │ │ │ │ ├── bundle.sh │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── base64-js │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE.MIT │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── bench │ │ │ │ │ │ │ └── bench.js │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ └── b64.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── convert.js │ │ │ │ │ └── ieee754 │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── test │ │ │ │ │ │ └── basic.js │ │ │ │ ├── package.json │ │ │ │ ├── perf │ │ │ │ │ ├── bracket-notation.js │ │ │ │ │ ├── bundle.js │ │ │ │ │ ├── comparison │ │ │ │ │ │ ├── bracket-notation.js │ │ │ │ │ │ ├── bundle.js │ │ │ │ │ │ ├── concat.js │ │ │ │ │ │ ├── copy-big.js │ │ │ │ │ │ ├── copy.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── new.js │ │ │ │ │ │ ├── readDoubleBE.js │ │ │ │ │ │ ├── readFloatBE.js │ │ │ │ │ │ ├── readUInt32LE.js │ │ │ │ │ │ ├── slice.js │ │ │ │ │ │ └── writeFloatBE.js │ │ │ │ │ └── solo │ │ │ │ │ │ ├── bracket-notation.js │ │ │ │ │ │ ├── bundle.js │ │ │ │ │ │ ├── concat.js │ │ │ │ │ │ ├── copy.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── new.js │ │ │ │ │ │ ├── readDoubleBE.js │ │ │ │ │ │ ├── readFloatBE.js │ │ │ │ │ │ ├── readUInt32BE.js │ │ │ │ │ │ ├── readUInt32LE.js │ │ │ │ │ │ ├── slice.js │ │ │ │ │ │ └── writeFloatBE.js │ │ │ │ └── test │ │ │ │ │ ├── basic.js │ │ │ │ │ ├── buffer.js │ │ │ │ │ ├── deprecated.js │ │ │ │ │ ├── indexes.js │ │ │ │ │ ├── is-buffer.js │ │ │ │ │ ├── is-encoding.js │ │ │ │ │ ├── slice.js │ │ │ │ │ └── utf16.js │ │ │ ├── builtins │ │ │ │ ├── History.md │ │ │ │ ├── Readme.md │ │ │ │ ├── builtins.json │ │ │ │ └── package.json │ │ │ ├── commondir │ │ │ │ ├── README.markdown │ │ │ │ ├── example │ │ │ │ │ ├── base.js │ │ │ │ │ └── dir.js │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ └── dirs.js │ │ │ ├── concat-stream │ │ │ │ ├── .npmignore │ │ │ │ ├── LICENSE │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── readable-stream │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── duplex.js │ │ │ │ │ │ ├── float.patch │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ ├── _stream_duplex.js │ │ │ │ │ │ │ ├── _stream_passthrough.js │ │ │ │ │ │ │ ├── _stream_readable.js │ │ │ │ │ │ │ ├── _stream_transform.js │ │ │ │ │ │ │ └── _stream_writable.js │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ ├── core-util-is │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── float.patch │ │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ │ └── util.js │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ └── util.js │ │ │ │ │ │ │ ├── isarray │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── build │ │ │ │ │ │ │ │ │ └── build.js │ │ │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ └── string_decoder │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── passthrough.js │ │ │ │ │ │ ├── readable.js │ │ │ │ │ │ ├── transform.js │ │ │ │ │ │ └── writable.js │ │ │ │ │ └── typedarray │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── example │ │ │ │ │ │ └── tarray.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── readme.markdown │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── server │ │ │ │ │ │ └── undef_globals.js │ │ │ │ │ │ └── tarray.js │ │ │ │ ├── package.json │ │ │ │ ├── readme.md │ │ │ │ └── test │ │ │ │ │ ├── array.js │ │ │ │ │ ├── buffer.js │ │ │ │ │ ├── infer.js │ │ │ │ │ ├── nothing.js │ │ │ │ │ ├── objects.js │ │ │ │ │ ├── server │ │ │ │ │ └── ls.js │ │ │ │ │ ├── string.js │ │ │ │ │ └── typedarray.js │ │ │ ├── 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 │ │ │ ├── crypto-browserify │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── example │ │ │ │ │ ├── bundle.js │ │ │ │ │ ├── index.html │ │ │ │ │ └── test.js │ │ │ │ ├── helpers.js │ │ │ │ ├── index.js │ │ │ │ ├── md5.js │ │ │ │ ├── package.json │ │ │ │ ├── readme.markdown │ │ │ │ ├── rng.js │ │ │ │ ├── sha.js │ │ │ │ ├── sha256.js │ │ │ │ └── test │ │ │ │ │ ├── browser.js │ │ │ │ │ ├── node.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── simple.js │ │ │ │ │ └── vectors │ │ │ │ │ ├── Readme.txt │ │ │ │ │ ├── byte-hashes.md5 │ │ │ │ │ ├── byte-hashes.sha1 │ │ │ │ │ ├── byte-hashes.sha256 │ │ │ │ │ ├── byte0000.dat │ │ │ │ │ ├── byte0001.dat │ │ │ │ │ ├── byte0002.dat │ │ │ │ │ ├── byte0003.dat │ │ │ │ │ ├── byte0004.dat │ │ │ │ │ ├── byte0005.dat │ │ │ │ │ ├── byte0006.dat │ │ │ │ │ ├── byte0007.dat │ │ │ │ │ ├── byte0008.dat │ │ │ │ │ ├── byte0009.dat │ │ │ │ │ ├── byte0010.dat │ │ │ │ │ ├── byte0011.dat │ │ │ │ │ ├── byte0012.dat │ │ │ │ │ ├── byte0013.dat │ │ │ │ │ ├── byte0014.dat │ │ │ │ │ ├── byte0015.dat │ │ │ │ │ ├── byte0016.dat │ │ │ │ │ ├── byte0017.dat │ │ │ │ │ ├── byte0018.dat │ │ │ │ │ ├── byte0019.dat │ │ │ │ │ ├── byte0020.dat │ │ │ │ │ ├── byte0021.dat │ │ │ │ │ ├── byte0022.dat │ │ │ │ │ ├── byte0023.dat │ │ │ │ │ ├── byte0024.dat │ │ │ │ │ ├── byte0025.dat │ │ │ │ │ ├── byte0026.dat │ │ │ │ │ ├── byte0027.dat │ │ │ │ │ ├── byte0028.dat │ │ │ │ │ ├── byte0029.dat │ │ │ │ │ ├── byte0030.dat │ │ │ │ │ ├── byte0031.dat │ │ │ │ │ ├── byte0032.dat │ │ │ │ │ ├── byte0033.dat │ │ │ │ │ ├── byte0034.dat │ │ │ │ │ ├── byte0035.dat │ │ │ │ │ ├── byte0036.dat │ │ │ │ │ ├── byte0037.dat │ │ │ │ │ ├── byte0038.dat │ │ │ │ │ ├── byte0039.dat │ │ │ │ │ ├── byte0040.dat │ │ │ │ │ ├── byte0041.dat │ │ │ │ │ ├── byte0042.dat │ │ │ │ │ ├── byte0043.dat │ │ │ │ │ ├── byte0044.dat │ │ │ │ │ ├── byte0045.dat │ │ │ │ │ ├── byte0046.dat │ │ │ │ │ ├── byte0047.dat │ │ │ │ │ ├── byte0048.dat │ │ │ │ │ ├── byte0049.dat │ │ │ │ │ ├── byte0050.dat │ │ │ │ │ ├── byte0051.dat │ │ │ │ │ ├── byte0052.dat │ │ │ │ │ ├── byte0053.dat │ │ │ │ │ ├── byte0054.dat │ │ │ │ │ ├── byte0055.dat │ │ │ │ │ ├── byte0056.dat │ │ │ │ │ ├── byte0057.dat │ │ │ │ │ ├── byte0058.dat │ │ │ │ │ ├── byte0059.dat │ │ │ │ │ ├── byte0060.dat │ │ │ │ │ ├── byte0061.dat │ │ │ │ │ ├── byte0062.dat │ │ │ │ │ ├── byte0063.dat │ │ │ │ │ ├── byte0064.dat │ │ │ │ │ ├── byte0065.dat │ │ │ │ │ ├── byte0066.dat │ │ │ │ │ ├── byte0067.dat │ │ │ │ │ ├── byte0068.dat │ │ │ │ │ ├── byte0069.dat │ │ │ │ │ ├── byte0070.dat │ │ │ │ │ ├── byte0071.dat │ │ │ │ │ ├── byte0072.dat │ │ │ │ │ ├── byte0073.dat │ │ │ │ │ ├── byte0074.dat │ │ │ │ │ ├── byte0075.dat │ │ │ │ │ ├── byte0076.dat │ │ │ │ │ ├── byte0077.dat │ │ │ │ │ ├── byte0078.dat │ │ │ │ │ ├── byte0079.dat │ │ │ │ │ ├── byte0080.dat │ │ │ │ │ ├── byte0081.dat │ │ │ │ │ ├── byte0082.dat │ │ │ │ │ ├── byte0083.dat │ │ │ │ │ ├── byte0084.dat │ │ │ │ │ ├── byte0085.dat │ │ │ │ │ ├── byte0086.dat │ │ │ │ │ ├── byte0087.dat │ │ │ │ │ ├── byte0088.dat │ │ │ │ │ ├── byte0089.dat │ │ │ │ │ ├── byte0090.dat │ │ │ │ │ ├── byte0091.dat │ │ │ │ │ ├── byte0092.dat │ │ │ │ │ ├── byte0093.dat │ │ │ │ │ ├── byte0094.dat │ │ │ │ │ ├── byte0095.dat │ │ │ │ │ ├── byte0096.dat │ │ │ │ │ ├── byte0097.dat │ │ │ │ │ ├── byte0098.dat │ │ │ │ │ ├── byte0099.dat │ │ │ │ │ ├── byte0100.dat │ │ │ │ │ ├── byte0101.dat │ │ │ │ │ ├── byte0102.dat │ │ │ │ │ ├── byte0103.dat │ │ │ │ │ ├── byte0104.dat │ │ │ │ │ ├── byte0105.dat │ │ │ │ │ ├── byte0106.dat │ │ │ │ │ ├── byte0107.dat │ │ │ │ │ ├── byte0108.dat │ │ │ │ │ ├── byte0109.dat │ │ │ │ │ ├── byte0110.dat │ │ │ │ │ ├── byte0111.dat │ │ │ │ │ ├── byte0112.dat │ │ │ │ │ ├── byte0113.dat │ │ │ │ │ ├── byte0114.dat │ │ │ │ │ ├── byte0115.dat │ │ │ │ │ ├── byte0116.dat │ │ │ │ │ ├── byte0117.dat │ │ │ │ │ ├── byte0118.dat │ │ │ │ │ ├── byte0119.dat │ │ │ │ │ ├── byte0120.dat │ │ │ │ │ ├── byte0121.dat │ │ │ │ │ ├── byte0122.dat │ │ │ │ │ ├── byte0123.dat │ │ │ │ │ ├── byte0124.dat │ │ │ │ │ ├── byte0125.dat │ │ │ │ │ ├── byte0126.dat │ │ │ │ │ ├── byte0127.dat │ │ │ │ │ ├── byte0128.dat │ │ │ │ │ ├── byte0129.dat │ │ │ │ │ ├── byte0130.dat │ │ │ │ │ ├── byte0131.dat │ │ │ │ │ ├── byte0132.dat │ │ │ │ │ ├── byte0133.dat │ │ │ │ │ ├── byte0134.dat │ │ │ │ │ ├── byte0135.dat │ │ │ │ │ ├── byte0136.dat │ │ │ │ │ ├── byte0137.dat │ │ │ │ │ ├── byte0138.dat │ │ │ │ │ ├── byte0139.dat │ │ │ │ │ ├── byte0140.dat │ │ │ │ │ ├── byte0141.dat │ │ │ │ │ ├── byte0142.dat │ │ │ │ │ ├── byte0143.dat │ │ │ │ │ ├── byte0144.dat │ │ │ │ │ ├── byte0145.dat │ │ │ │ │ ├── byte0146.dat │ │ │ │ │ ├── byte0147.dat │ │ │ │ │ ├── byte0148.dat │ │ │ │ │ ├── byte0149.dat │ │ │ │ │ ├── byte0150.dat │ │ │ │ │ ├── byte0151.dat │ │ │ │ │ ├── byte0152.dat │ │ │ │ │ ├── byte0153.dat │ │ │ │ │ ├── byte0154.dat │ │ │ │ │ ├── byte0155.dat │ │ │ │ │ ├── byte0156.dat │ │ │ │ │ ├── byte0157.dat │ │ │ │ │ ├── byte0158.dat │ │ │ │ │ ├── byte0159.dat │ │ │ │ │ ├── byte0160.dat │ │ │ │ │ ├── byte0161.dat │ │ │ │ │ ├── byte0162.dat │ │ │ │ │ ├── byte0163.dat │ │ │ │ │ ├── byte0164.dat │ │ │ │ │ ├── byte0165.dat │ │ │ │ │ ├── byte0166.dat │ │ │ │ │ ├── byte0167.dat │ │ │ │ │ ├── byte0168.dat │ │ │ │ │ ├── byte0169.dat │ │ │ │ │ ├── byte0170.dat │ │ │ │ │ ├── byte0171.dat │ │ │ │ │ ├── byte0172.dat │ │ │ │ │ ├── byte0173.dat │ │ │ │ │ ├── byte0174.dat │ │ │ │ │ ├── byte0175.dat │ │ │ │ │ ├── byte0176.dat │ │ │ │ │ ├── byte0177.dat │ │ │ │ │ ├── byte0178.dat │ │ │ │ │ ├── byte0179.dat │ │ │ │ │ ├── byte0180.dat │ │ │ │ │ ├── byte0181.dat │ │ │ │ │ ├── byte0182.dat │ │ │ │ │ ├── byte0183.dat │ │ │ │ │ ├── byte0184.dat │ │ │ │ │ ├── byte0185.dat │ │ │ │ │ ├── byte0186.dat │ │ │ │ │ ├── byte0187.dat │ │ │ │ │ ├── byte0188.dat │ │ │ │ │ ├── byte0189.dat │ │ │ │ │ ├── byte0190.dat │ │ │ │ │ ├── byte0191.dat │ │ │ │ │ ├── byte0192.dat │ │ │ │ │ ├── byte0193.dat │ │ │ │ │ ├── byte0194.dat │ │ │ │ │ └── byte0195.dat │ │ │ ├── deep-equal │ │ │ │ ├── .travis.yml │ │ │ │ ├── example │ │ │ │ │ └── cmp.js │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ ├── is_arguments.js │ │ │ │ │ └── keys.js │ │ │ │ ├── package.json │ │ │ │ ├── readme.markdown │ │ │ │ └── test │ │ │ │ │ └── cmp.js │ │ │ ├── defined │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── example │ │ │ │ │ └── defined.js │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ ├── readme.markdown │ │ │ │ └── test │ │ │ │ │ └── def.js │ │ │ ├── deps-sort │ │ │ │ ├── LICENSE │ │ │ │ ├── bin │ │ │ │ │ └── cmd.js │ │ │ │ ├── example │ │ │ │ │ └── sort.js │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── JSONStream │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE.APACHE2 │ │ │ │ │ │ ├── LICENSE.MIT │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ └── all_docs.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ ├── jsonparse │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ ├── README.markdown │ │ │ │ │ │ │ │ ├── bench.js │ │ │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ │ │ └── twitterfeed.js │ │ │ │ │ │ │ │ ├── jsonparse.js │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ ├── samplejson │ │ │ │ │ │ │ │ │ ├── basic.json │ │ │ │ │ │ │ │ │ └── basic2.json │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ ├── boundary.js │ │ │ │ │ │ │ │ │ ├── primitives.js │ │ │ │ │ │ │ │ │ └── utf8.js │ │ │ │ │ │ │ └── through │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ ├── LICENSE.APACHE2 │ │ │ │ │ │ │ │ ├── LICENSE.MIT │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ ├── readme.markdown │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ ├── buffering.js │ │ │ │ │ │ │ │ ├── end.js │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── readme.markdown │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── bool.js │ │ │ │ │ │ │ ├── destroy_missing.js │ │ │ │ │ │ │ ├── empty.js │ │ │ │ │ │ │ ├── fixtures │ │ │ │ │ │ │ └── all_npm.json │ │ │ │ │ │ │ ├── fn.js │ │ │ │ │ │ │ ├── gen.js │ │ │ │ │ │ │ ├── multiple_objects.js │ │ │ │ │ │ │ ├── multiple_objects_error.js │ │ │ │ │ │ │ ├── parsejson.js │ │ │ │ │ │ │ ├── stringify.js │ │ │ │ │ │ │ ├── stringify_object.js │ │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ │ ├── test2.js │ │ │ │ │ │ │ └── two-ways.js │ │ │ │ │ ├── minimist │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── example │ │ │ │ │ │ │ └── parse.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── readme.markdown │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── dash.js │ │ │ │ │ │ │ ├── default_bool.js │ │ │ │ │ │ │ ├── dotted.js │ │ │ │ │ │ │ ├── long.js │ │ │ │ │ │ │ ├── parse.js │ │ │ │ │ │ │ ├── parse_modified.js │ │ │ │ │ │ │ ├── short.js │ │ │ │ │ │ │ └── whitespace.js │ │ │ │ │ └── through │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE.APACHE2 │ │ │ │ │ │ ├── LICENSE.MIT │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── readme.markdown │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── auto-destroy.js │ │ │ │ │ │ ├── buffering.js │ │ │ │ │ │ ├── end.js │ │ │ │ │ │ └── index.js │ │ │ │ ├── package.json │ │ │ │ └── readme.markdown │ │ │ ├── derequire │ │ │ │ ├── .npmignore │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── .bin │ │ │ │ │ │ ├── esparse │ │ │ │ │ │ └── esvalidate │ │ │ │ │ ├── esprima-fb │ │ │ │ │ │ ├── .eslintrc │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── ChangeLog │ │ │ │ │ │ ├── LICENSE.BSD │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ ├── esparse.js │ │ │ │ │ │ │ └── esvalidate.js │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ ├── doc │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── esprima.js │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── detectnestedternary.js │ │ │ │ │ │ │ ├── findbooleantrap.js │ │ │ │ │ │ │ └── tokendist.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── benchmarks.html │ │ │ │ │ │ │ ├── benchmarks.js │ │ │ │ │ │ │ ├── compare.html │ │ │ │ │ │ │ ├── compare.js │ │ │ │ │ │ │ ├── compat.html │ │ │ │ │ │ │ ├── compat.js │ │ │ │ │ │ │ ├── coverage.html │ │ │ │ │ │ │ ├── esprima.js.html │ │ │ │ │ │ │ ├── fbtest.js │ │ │ │ │ │ │ ├── harmonytest.js │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── module.html │ │ │ │ │ │ │ ├── module.js │ │ │ │ │ │ │ ├── reflect.js │ │ │ │ │ │ │ ├── run.js │ │ │ │ │ │ │ ├── runner.js │ │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── esrefactor │ │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ │ ├── LICENSE.BSD │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ └── esrefactor.js │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ ├── .bin │ │ │ │ │ │ │ │ ├── esparse │ │ │ │ │ │ │ │ └── esvalidate │ │ │ │ │ │ │ ├── escope │ │ │ │ │ │ │ │ ├── .jshintrc │ │ │ │ │ │ │ │ ├── Gruntfile.js │ │ │ │ │ │ │ │ ├── LICENSE.BSD │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── bower.json │ │ │ │ │ │ │ │ ├── escope.js │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ ├── esprima │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ │ │ ├── esparse.js │ │ │ │ │ │ │ │ │ └── esvalidate.js │ │ │ │ │ │ │ │ ├── esprima.js │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ ├── compat.js │ │ │ │ │ │ │ │ │ ├── reflect.js │ │ │ │ │ │ │ │ │ ├── run.js │ │ │ │ │ │ │ │ │ ├── runner.js │ │ │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ │ └── estraverse │ │ │ │ │ │ │ │ ├── LICENSE.BSD │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── estraverse.js │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ ├── arguments1.js │ │ │ │ │ │ │ ├── arguments2.js │ │ │ │ │ │ │ ├── arguments3.js │ │ │ │ │ │ │ ├── arguments4.js │ │ │ │ │ │ │ ├── error_empty.js │ │ │ │ │ │ │ ├── error_invalid_range.js │ │ │ │ │ │ │ ├── error_nocode.js │ │ │ │ │ │ │ ├── error_noscope.js │ │ │ │ │ │ │ ├── error_scope_manager.js │ │ │ │ │ │ │ ├── function_declaration.js │ │ │ │ │ │ │ ├── function_expression.js │ │ │ │ │ │ │ ├── global_declaration.js │ │ │ │ │ │ │ ├── global_init.js │ │ │ │ │ │ │ ├── global_leak.js │ │ │ │ │ │ │ ├── global_scope.js │ │ │ │ │ │ │ ├── nested_functions.js │ │ │ │ │ │ │ ├── shadowed_argument.js │ │ │ │ │ │ │ ├── typo.js │ │ │ │ │ │ │ └── unused_declaration.js │ │ │ │ │ │ │ └── run.js │ │ │ │ │ └── estraverse │ │ │ │ │ │ ├── .jshintrc │ │ │ │ │ │ ├── LICENSE.BSD │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── estraverse.js │ │ │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── readme.md │ │ │ │ └── test │ │ │ │ │ ├── cjs-lazy.js │ │ │ │ │ ├── cjs-smartass.dereq.js │ │ │ │ │ ├── cjs-smartass.js │ │ │ │ │ ├── pouchdb.dereq.js │ │ │ │ │ ├── pouchdb.js │ │ │ │ │ └── test.js │ │ │ ├── domain-browser │ │ │ │ ├── .npmignore │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── test.js │ │ │ ├── duplexer │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENCE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ └── index.js │ │ │ ├── events │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── .zuul.yml │ │ │ │ ├── History.md │ │ │ │ ├── Readme.md │ │ │ │ ├── events.js │ │ │ │ ├── package.json │ │ │ │ └── tests │ │ │ │ │ ├── add-listeners.js │ │ │ │ │ ├── check-listener-leaks.js │ │ │ │ │ ├── common.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── legacy-compat.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 │ │ │ ├── glob │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── examples │ │ │ │ │ ├── g.js │ │ │ │ │ └── usr-local.js │ │ │ │ ├── glob.js │ │ │ │ ├── node_modules │ │ │ │ │ └── minimatch │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── minimatch.js │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ ├── lru-cache │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ └── lru-cache.js │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ ├── basic.js │ │ │ │ │ │ │ │ ├── foreach.js │ │ │ │ │ │ │ │ └── memory-leak.js │ │ │ │ │ │ └── sigmund │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── bench.js │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ ├── sigmund.js │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── basic.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── basic.js │ │ │ │ │ │ ├── brace-expand.js │ │ │ │ │ │ ├── caching.js │ │ │ │ │ │ ├── defaults.js │ │ │ │ │ │ └── extglob-ending-with-state-char.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ ├── 00-setup.js │ │ │ │ │ ├── bash-comparison.js │ │ │ │ │ ├── bash-results.json │ │ │ │ │ ├── cwd-test.js │ │ │ │ │ ├── globstar-match.js │ │ │ │ │ ├── mark.js │ │ │ │ │ ├── new-glob-optional-options.js │ │ │ │ │ ├── nocase-nomagic.js │ │ │ │ │ ├── pause-resume.js │ │ │ │ │ ├── readme-issue.js │ │ │ │ │ ├── root-nomount.js │ │ │ │ │ ├── root.js │ │ │ │ │ ├── stat.js │ │ │ │ │ └── zz-cleanup.js │ │ │ ├── http-browserify │ │ │ │ ├── example │ │ │ │ │ ├── get │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ └── server.js │ │ │ │ │ ├── headers │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ └── server.js │ │ │ │ │ ├── json-stream │ │ │ │ │ │ ├── data.json │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ └── JSONStream │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ ├── LICENSE.APACHE2 │ │ │ │ │ │ │ │ ├── LICENSE.MIT │ │ │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ │ └── all_docs.js │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ └── jsonparse │ │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ │ ├── README.markdown │ │ │ │ │ │ │ │ │ ├── bench.js │ │ │ │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ │ │ └── twitterfeed.js │ │ │ │ │ │ │ │ │ ├── jsonparse.js │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ ├── samplejson │ │ │ │ │ │ │ │ │ ├── basic.json │ │ │ │ │ │ │ │ │ └── basic2.json │ │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ ├── primitives.js │ │ │ │ │ │ │ │ │ └── utf8.js │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ ├── readme.markdown │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ ├── bool.js │ │ │ │ │ │ │ │ ├── destroy_missing.js │ │ │ │ │ │ │ │ ├── empty.js │ │ │ │ │ │ │ │ ├── fixtures │ │ │ │ │ │ │ │ └── all_npm.json │ │ │ │ │ │ │ │ ├── fn.js │ │ │ │ │ │ │ │ ├── memory.js │ │ │ │ │ │ │ │ ├── multiple_objects.js │ │ │ │ │ │ │ │ ├── multiple_objects_error.js │ │ │ │ │ │ │ │ ├── parsejson.js │ │ │ │ │ │ │ │ ├── stringify.js │ │ │ │ │ │ │ │ ├── stringify_object.js │ │ │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ │ │ ├── test2.js │ │ │ │ │ │ │ │ └── two-ways.js │ │ │ │ │ │ └── server.js │ │ │ │ │ ├── post │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ └── server.js │ │ │ │ │ └── streaming │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ └── server.js │ │ │ │ ├── index.js │ │ │ │ ├── inject.js │ │ │ │ ├── lib │ │ │ │ │ ├── request.js │ │ │ │ │ └── response.js │ │ │ │ ├── node_modules │ │ │ │ │ └── Base64 │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── base64.js │ │ │ │ │ │ ├── base64.min.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── test │ │ │ │ │ │ └── base64.coffee │ │ │ │ ├── package.json │ │ │ │ ├── readme.markdown │ │ │ │ └── test │ │ │ │ │ └── request_url.js │ │ │ ├── https-browserify │ │ │ │ ├── LICENSE │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── readme.markdown │ │ │ ├── inherits │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── inherits.js │ │ │ │ ├── inherits_browser.js │ │ │ │ ├── package.json │ │ │ │ └── test.js │ │ │ ├── insert-module-globals │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── bench │ │ │ │ │ ├── results.txt │ │ │ │ │ └── run.sh │ │ │ │ ├── bin │ │ │ │ │ └── cmd.js │ │ │ │ ├── example │ │ │ │ │ ├── files │ │ │ │ │ │ ├── foo │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ └── main.js │ │ │ │ │ └── insert.js │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── lexical-scope │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── bench │ │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ │ ├── results.txt │ │ │ │ │ │ │ └── run.js │ │ │ │ │ │ ├── example │ │ │ │ │ │ │ ├── detect.js │ │ │ │ │ │ │ ├── mine.js │ │ │ │ │ │ │ └── src.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── mine.js │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ └── astw │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ ├── example │ │ │ │ │ │ │ │ └── types.js │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ ├── .bin │ │ │ │ │ │ │ │ │ ├── esparse │ │ │ │ │ │ │ │ │ └── esvalidate │ │ │ │ │ │ │ │ └── esprima-fb │ │ │ │ │ │ │ │ │ ├── .eslintrc │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ ├── ChangeLog │ │ │ │ │ │ │ │ │ ├── LICENSE.BSD │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ │ │ ├── esparse.js │ │ │ │ │ │ │ │ │ └── esvalidate.js │ │ │ │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ │ │ │ ├── doc │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ │ ├── esprima.js │ │ │ │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ │ │ ├── detectnestedternary.js │ │ │ │ │ │ │ │ │ ├── findbooleantrap.js │ │ │ │ │ │ │ │ │ └── tokendist.js │ │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ ├── benchmarks.html │ │ │ │ │ │ │ │ │ ├── benchmarks.js │ │ │ │ │ │ │ │ │ ├── compare.html │ │ │ │ │ │ │ │ │ ├── compare.js │ │ │ │ │ │ │ │ │ ├── compat.html │ │ │ │ │ │ │ │ │ ├── compat.js │ │ │ │ │ │ │ │ │ ├── coverage.html │ │ │ │ │ │ │ │ │ ├── esprima.js.html │ │ │ │ │ │ │ │ │ ├── fbtest.js │ │ │ │ │ │ │ │ │ ├── harmonytest.js │ │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ │ ├── module.html │ │ │ │ │ │ │ │ │ ├── module.js │ │ │ │ │ │ │ │ │ ├── reflect.js │ │ │ │ │ │ │ │ │ ├── run.js │ │ │ │ │ │ │ │ │ ├── runner.js │ │ │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ ├── readme.markdown │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ └── parent.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── readme.markdown │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── argument.js │ │ │ │ │ │ │ ├── assign_implicit.js │ │ │ │ │ │ │ ├── detect.js │ │ │ │ │ │ │ ├── files │ │ │ │ │ │ │ ├── argument.js │ │ │ │ │ │ │ ├── assign_implicit.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 │ │ │ │ │ │ │ ├── return_hash.js │ │ │ │ │ │ │ ├── right_hand.js │ │ │ │ │ │ │ ├── shebang.js │ │ │ │ │ │ │ └── try_catch.js │ │ │ │ │ ├── process │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── browser.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ └── through │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE.APACHE2 │ │ │ │ │ │ ├── LICENSE.MIT │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── readme.markdown │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── auto-destroy.js │ │ │ │ │ │ ├── buffering.js │ │ │ │ │ │ ├── end.js │ │ │ │ │ │ └── index.js │ │ │ │ ├── package.json │ │ │ │ ├── readme.markdown │ │ │ │ └── test │ │ │ │ │ ├── always.js │ │ │ │ │ ├── always │ │ │ │ │ └── main.js │ │ │ │ │ ├── global.js │ │ │ │ │ ├── global │ │ │ │ │ ├── filename.js │ │ │ │ │ └── main.js │ │ │ │ │ ├── insert.js │ │ │ │ │ ├── insert │ │ │ │ │ ├── buffer.js │ │ │ │ │ ├── foo │ │ │ │ │ │ ├── buf.js │ │ │ │ │ │ └── index.js │ │ │ │ │ └── main.js │ │ │ │ │ ├── return.js │ │ │ │ │ └── return │ │ │ │ │ ├── foo │ │ │ │ │ └── index.js │ │ │ │ │ └── main.js │ │ │ ├── module-deps │ │ │ │ ├── .travis.yml │ │ │ │ ├── cmd.js │ │ │ │ ├── example │ │ │ │ │ ├── deps.js │ │ │ │ │ └── files │ │ │ │ │ │ ├── bar.js │ │ │ │ │ │ ├── foo.js │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ └── xyz.js │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── detective │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── example │ │ │ │ │ │ │ ├── strings.js │ │ │ │ │ │ │ └── strings_src.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ ├── .bin │ │ │ │ │ │ │ │ ├── escodegen │ │ │ │ │ │ │ │ ├── esgenerate │ │ │ │ │ │ │ │ ├── esparse │ │ │ │ │ │ │ │ └── esvalidate │ │ │ │ │ │ │ ├── escodegen │ │ │ │ │ │ │ │ ├── .jshintrc │ │ │ │ │ │ │ │ ├── Gruntfile.js │ │ │ │ │ │ │ │ ├── LICENSE.BSD │ │ │ │ │ │ │ │ ├── LICENSE.source-map │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ │ │ ├── escodegen.js │ │ │ │ │ │ │ │ │ └── esgenerate.js │ │ │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ │ │ ├── escodegen.browser.min.js │ │ │ │ │ │ │ │ ├── escodegen.js │ │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ │ ├── .bin │ │ │ │ │ │ │ │ │ │ ├── esparse │ │ │ │ │ │ │ │ │ │ └── esvalidate │ │ │ │ │ │ │ │ │ ├── esprima │ │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ │ │ │ │ ├── esparse.js │ │ │ │ │ │ │ │ │ │ │ └── esvalidate.js │ │ │ │ │ │ │ │ │ │ ├── esprima.js │ │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ │ │ ├── compat.js │ │ │ │ │ │ │ │ │ │ │ ├── reflect.js │ │ │ │ │ │ │ │ │ │ │ ├── run.js │ │ │ │ │ │ │ │ │ │ │ ├── runner.js │ │ │ │ │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ │ │ │ ├── estraverse │ │ │ │ │ │ │ │ │ │ ├── .jshintrc │ │ │ │ │ │ │ │ │ │ ├── LICENSE.BSD │ │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ │ ├── estraverse.js │ │ │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ │ │ ├── esutils │ │ │ │ │ │ │ │ │ │ ├── .jshintrc │ │ │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ │ │ │ ├── code.js │ │ │ │ │ │ │ │ │ │ │ ├── keyword.js │ │ │ │ │ │ │ │ │ │ │ └── utils.js │ │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ │ │ ├── code.coffee │ │ │ │ │ │ │ │ │ │ │ └── keyword.coffee │ │ │ │ │ │ │ │ │ └── source-map │ │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ │ │ ├── Makefile.dryice.js │ │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ │ ├── build │ │ │ │ │ │ │ │ │ │ ├── assert-shim.js │ │ │ │ │ │ │ │ │ │ ├── mini-require.js │ │ │ │ │ │ │ │ │ │ ├── prefix-source-map.jsm │ │ │ │ │ │ │ │ │ │ ├── prefix-utils.jsm │ │ │ │ │ │ │ │ │ │ ├── suffix-browser.js │ │ │ │ │ │ │ │ │ │ ├── suffix-source-map.jsm │ │ │ │ │ │ │ │ │ │ ├── suffix-utils.jsm │ │ │ │ │ │ │ │ │ │ ├── test-prefix.js │ │ │ │ │ │ │ │ │ │ └── test-suffix.js │ │ │ │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ │ │ ├── source-map.js │ │ │ │ │ │ │ │ │ │ └── source-map │ │ │ │ │ │ │ │ │ │ │ ├── array-set.js │ │ │ │ │ │ │ │ │ │ │ ├── base64-vlq.js │ │ │ │ │ │ │ │ │ │ │ ├── base64.js │ │ │ │ │ │ │ │ │ │ │ ├── binary-search.js │ │ │ │ │ │ │ │ │ │ │ ├── source-map-consumer.js │ │ │ │ │ │ │ │ │ │ │ ├── source-map-generator.js │ │ │ │ │ │ │ │ │ │ │ ├── source-node.js │ │ │ │ │ │ │ │ │ │ │ └── util.js │ │ │ │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ │ │ └── amdefine │ │ │ │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ │ │ ├── amdefine.js │ │ │ │ │ │ │ │ │ │ │ ├── intercept.js │ │ │ │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ │ ├── run-tests.js │ │ │ │ │ │ │ │ │ │ └── source-map │ │ │ │ │ │ │ │ │ │ ├── test-api.js │ │ │ │ │ │ │ │ │ │ ├── test-array-set.js │ │ │ │ │ │ │ │ │ │ ├── test-base64-vlq.js │ │ │ │ │ │ │ │ │ │ ├── test-base64.js │ │ │ │ │ │ │ │ │ │ ├── test-binary-search.js │ │ │ │ │ │ │ │ │ │ ├── test-dog-fooding.js │ │ │ │ │ │ │ │ │ │ ├── test-source-map-consumer.js │ │ │ │ │ │ │ │ │ │ ├── test-source-map-generator.js │ │ │ │ │ │ │ │ │ │ ├── test-source-node.js │ │ │ │ │ │ │ │ │ │ ├── test-util.js │ │ │ │ │ │ │ │ │ │ └── util.js │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ └── esprima-fb │ │ │ │ │ │ │ │ ├── .eslintrc │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ ├── ChangeLog │ │ │ │ │ │ │ │ ├── LICENSE.BSD │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ │ ├── esparse.js │ │ │ │ │ │ │ │ └── esvalidate.js │ │ │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ │ │ ├── doc │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ ├── esprima.js │ │ │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ │ ├── detectnestedternary.js │ │ │ │ │ │ │ │ ├── findbooleantrap.js │ │ │ │ │ │ │ │ └── tokendist.js │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ ├── benchmarks.html │ │ │ │ │ │ │ │ ├── benchmarks.js │ │ │ │ │ │ │ │ ├── compare.html │ │ │ │ │ │ │ │ ├── compare.js │ │ │ │ │ │ │ │ ├── compat.html │ │ │ │ │ │ │ │ ├── compat.js │ │ │ │ │ │ │ │ ├── coverage.html │ │ │ │ │ │ │ │ ├── esprima.js.html │ │ │ │ │ │ │ │ ├── fbtest.js │ │ │ │ │ │ │ │ ├── harmonytest.js │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── module.html │ │ │ │ │ │ │ │ ├── module.js │ │ │ │ │ │ │ │ ├── reflect.js │ │ │ │ │ │ │ │ ├── run.js │ │ │ │ │ │ │ │ ├── runner.js │ │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── readme.markdown │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── both.js │ │ │ │ │ │ │ ├── chained.js │ │ │ │ │ │ │ ├── files │ │ │ │ │ │ │ ├── both.js │ │ │ │ │ │ │ ├── chained.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 │ │ │ │ │ ├── minimist │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── example │ │ │ │ │ │ │ └── parse.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── readme.markdown │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── dash.js │ │ │ │ │ │ │ ├── default_bool.js │ │ │ │ │ │ │ ├── dotted.js │ │ │ │ │ │ │ ├── long.js │ │ │ │ │ │ │ ├── parse.js │ │ │ │ │ │ │ ├── parse_modified.js │ │ │ │ │ │ │ ├── short.js │ │ │ │ │ │ │ └── whitespace.js │ │ │ │ │ └── through │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE.APACHE2 │ │ │ │ │ │ ├── LICENSE.MIT │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── readme.markdown │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── auto-destroy.js │ │ │ │ │ │ ├── buffering.js │ │ │ │ │ │ ├── end.js │ │ │ │ │ │ └── index.js │ │ │ │ ├── package.json │ │ │ │ ├── readme.markdown │ │ │ │ └── test │ │ │ │ │ ├── bundle.js │ │ │ │ │ ├── deps.js │ │ │ │ │ ├── files │ │ │ │ │ ├── bar.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_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 │ │ │ │ │ ├── noparse.js │ │ │ │ │ ├── pkg_filter.js │ │ │ │ │ ├── stream.js │ │ │ │ │ ├── tr_2dep_module.js │ │ │ │ │ ├── tr_fn.js │ │ │ │ │ ├── tr_global.js │ │ │ │ │ ├── tr_module.js │ │ │ │ │ ├── tr_opts.js │ │ │ │ │ ├── tr_opts │ │ │ │ │ ├── main.js │ │ │ │ │ └── package.json │ │ │ │ │ ├── tr_rel.js │ │ │ │ │ ├── tr_sh.js │ │ │ │ │ ├── tr_whole_package.js │ │ │ │ │ └── unicode.js │ │ │ ├── os-browserify │ │ │ │ ├── .npmignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── browser.js │ │ │ │ ├── main.js │ │ │ │ └── package.json │ │ │ ├── parents │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── example │ │ │ │ │ ├── dirname.js │ │ │ │ │ └── win32.js │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ ├── readme.markdown │ │ │ │ └── test │ │ │ │ │ ├── dirname.js │ │ │ │ │ └── win32.js │ │ │ ├── path-browserify │ │ │ │ ├── LICENSE │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── readme.markdown │ │ │ ├── punycode │ │ │ │ ├── LICENSE-GPL.txt │ │ │ │ ├── LICENSE-MIT.txt │ │ │ │ ├── README.md │ │ │ │ ├── package.json │ │ │ │ ├── punycode.js │ │ │ │ └── punycode.min.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 │ │ │ ├── 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 │ │ │ │ │ ├── faulty_basedir.js │ │ │ │ │ ├── filter.js │ │ │ │ │ ├── filter_sync.js │ │ │ │ │ ├── mock.js │ │ │ │ │ ├── mock_sync.js │ │ │ │ │ ├── node_path.js │ │ │ │ │ ├── node_path │ │ │ │ │ ├── x │ │ │ │ │ │ ├── aaa │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ └── ccc │ │ │ │ │ │ │ └── index.js │ │ │ │ │ └── y │ │ │ │ │ │ ├── bbb │ │ │ │ │ │ └── index.js │ │ │ │ │ │ └── ccc │ │ │ │ │ │ └── index.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 │ │ │ ├── shallow-copy │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── example │ │ │ │ │ ├── array.js │ │ │ │ │ └── object.js │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ ├── readme.markdown │ │ │ │ └── test │ │ │ │ │ ├── array.js │ │ │ │ │ └── object.js │ │ │ ├── shell-quote │ │ │ │ ├── .travis.yml │ │ │ │ ├── README.markdown │ │ │ │ ├── example │ │ │ │ │ ├── parse.js │ │ │ │ │ └── quote.js │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ ├── parse.js │ │ │ │ │ └── quote.js │ │ │ ├── stream-browserify │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── duplex.js │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ └── process │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── browser.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── passthrough.js │ │ │ │ ├── readable.js │ │ │ │ ├── readme.markdown │ │ │ │ ├── test │ │ │ │ │ └── array_buffer.js │ │ │ │ ├── transform.js │ │ │ │ └── writable.js │ │ │ ├── stream-combiner │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ └── index.js │ │ │ ├── string_decoder │ │ │ │ ├── .npmignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── build │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── build.js │ │ │ │ │ ├── files.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── test-replacements.js │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ ├── common.js │ │ │ │ │ └── simple │ │ │ │ │ ├── test-string-decoder-end.js │ │ │ │ │ └── test-string-decoder.js │ │ │ ├── subarg │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── example │ │ │ │ │ └── show.js │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ └── minimist │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── example │ │ │ │ │ │ └── parse.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── readme.markdown │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── dash.js │ │ │ │ │ │ ├── default_bool.js │ │ │ │ │ │ ├── dotted.js │ │ │ │ │ │ ├── long.js │ │ │ │ │ │ ├── parse.js │ │ │ │ │ │ ├── parse_modified.js │ │ │ │ │ │ ├── short.js │ │ │ │ │ │ └── whitespace.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 │ │ │ │ │ │ ├── esparse │ │ │ │ │ │ └── esvalidate │ │ │ │ │ └── esprima-fb │ │ │ │ │ │ ├── .eslintrc │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── ChangeLog │ │ │ │ │ │ ├── LICENSE.BSD │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── bin │ │ │ │ │ │ ├── esparse.js │ │ │ │ │ │ └── esvalidate.js │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ ├── doc │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── esprima.js │ │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── detectnestedternary.js │ │ │ │ │ │ ├── findbooleantrap.js │ │ │ │ │ │ └── tokendist.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── benchmarks.html │ │ │ │ │ │ ├── benchmarks.js │ │ │ │ │ │ ├── compare.html │ │ │ │ │ │ ├── compare.js │ │ │ │ │ │ ├── compat.html │ │ │ │ │ │ ├── compat.js │ │ │ │ │ │ ├── coverage.html │ │ │ │ │ │ ├── esprima.js.html │ │ │ │ │ │ ├── fbtest.js │ │ │ │ │ │ ├── harmonytest.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── module.html │ │ │ │ │ │ ├── module.js │ │ │ │ │ │ ├── reflect.js │ │ │ │ │ │ ├── run.js │ │ │ │ │ │ ├── runner.js │ │ │ │ │ │ └── test.js │ │ │ │ ├── package.json │ │ │ │ ├── readme.markdown │ │ │ │ └── test │ │ │ │ │ ├── check.js │ │ │ │ │ └── sources │ │ │ │ │ └── check.js │ │ │ ├── through2 │ │ │ │ ├── .jshintrc │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── node_modules │ │ │ │ │ ├── readable-stream │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── duplex.js │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ ├── _stream_duplex.js │ │ │ │ │ │ │ ├── _stream_passthrough.js │ │ │ │ │ │ │ ├── _stream_readable.js │ │ │ │ │ │ │ ├── _stream_transform.js │ │ │ │ │ │ │ └── _stream_writable.js │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ ├── core-util-is │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── float.patch │ │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ │ └── util.js │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ └── util.js │ │ │ │ │ │ │ ├── isarray │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── build │ │ │ │ │ │ │ │ │ └── build.js │ │ │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ └── string_decoder │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── passthrough.js │ │ │ │ │ │ ├── readable.js │ │ │ │ │ │ ├── transform.js │ │ │ │ │ │ └── writable.js │ │ │ │ │ └── xtend │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── LICENCE │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── has-keys.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── mutable.js │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ └── object-keys │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── foreach.js │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── isArguments.js │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ ├── shim.js │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── foreach.js │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── isArguments.js │ │ │ │ │ │ │ └── shim.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── test.js │ │ │ │ ├── package.json │ │ │ │ ├── test │ │ │ │ │ ├── basic-test.js │ │ │ │ │ ├── bench.js │ │ │ │ │ ├── sauce.js │ │ │ │ │ └── test.js │ │ │ │ └── through2.js │ │ │ ├── timers-browserify │ │ │ │ ├── .npmignore │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── example │ │ │ │ │ └── enroll │ │ │ │ │ │ ├── build.sh │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── js │ │ │ │ │ │ ├── browserify.js │ │ │ │ │ │ └── main.js │ │ │ │ │ │ └── server.js │ │ │ │ ├── main.js │ │ │ │ ├── node_modules │ │ │ │ │ └── process │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── browser.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ └── package.json │ │ │ ├── tty-browserify │ │ │ │ ├── LICENSE │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── readme.markdown │ │ │ ├── umd │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bin │ │ │ │ │ └── cli.js │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── .bin │ │ │ │ │ │ └── uglifyjs │ │ │ │ │ ├── rfile │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ ├── callsite │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ └── resolve │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ ├── example │ │ │ │ │ │ │ │ ├── async.js │ │ │ │ │ │ │ │ └── sync.js │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ ├── async.js │ │ │ │ │ │ │ │ ├── core.js │ │ │ │ │ │ │ │ ├── core.json │ │ │ │ │ │ │ │ └── sync.js │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ ├── readme.markdown │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ ├── core.js │ │ │ │ │ │ │ │ ├── filter.js │ │ │ │ │ │ │ │ ├── filter_sync.js │ │ │ │ │ │ │ │ ├── mock.js │ │ │ │ │ │ │ │ ├── mock_sync.js │ │ │ │ │ │ │ │ ├── resolver.js │ │ │ │ │ │ │ │ ├── resolver │ │ │ │ │ │ │ │ ├── bar │ │ │ │ │ │ │ │ │ └── node_modules │ │ │ │ │ │ │ │ │ │ └── foo │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ ├── baz │ │ │ │ │ │ │ │ │ ├── doom.js │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ └── quux.js │ │ │ │ │ │ │ │ ├── biz │ │ │ │ │ │ │ │ │ └── node_modules │ │ │ │ │ │ │ │ │ │ ├── grux │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ │ └── tiv │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ ├── cup.coffee │ │ │ │ │ │ │ │ ├── foo.js │ │ │ │ │ │ │ │ ├── mug.coffee │ │ │ │ │ │ │ │ ├── mug.js │ │ │ │ │ │ │ │ └── other_path │ │ │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ │ └── other-lib.js │ │ │ │ │ │ │ │ │ └── root.js │ │ │ │ │ │ │ │ └── resolver_sync.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── ruglify │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ ├── .bin │ │ │ │ │ │ │ │ └── uglifyjs │ │ │ │ │ │ │ └── uglify-js │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ │ └── uglifyjs │ │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ ├── ast.js │ │ │ │ │ │ │ │ ├── compress.js │ │ │ │ │ │ │ │ ├── mozilla-ast.js │ │ │ │ │ │ │ │ ├── output.js │ │ │ │ │ │ │ │ ├── parse.js │ │ │ │ │ │ │ │ ├── scope.js │ │ │ │ │ │ │ │ ├── sourcemap.js │ │ │ │ │ │ │ │ ├── transform.js │ │ │ │ │ │ │ │ └── utils.js │ │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ ├── optimist │ │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ │ ├── example │ │ │ │ │ │ │ │ │ │ ├── bool.js │ │ │ │ │ │ │ │ │ │ ├── boolean_double.js │ │ │ │ │ │ │ │ │ │ ├── boolean_single.js │ │ │ │ │ │ │ │ │ │ ├── default_hash.js │ │ │ │ │ │ │ │ │ │ ├── default_singles.js │ │ │ │ │ │ │ │ │ │ ├── divide.js │ │ │ │ │ │ │ │ │ │ ├── line_count.js │ │ │ │ │ │ │ │ │ │ ├── line_count_options.js │ │ │ │ │ │ │ │ │ │ ├── line_count_wrap.js │ │ │ │ │ │ │ │ │ │ ├── nonopt.js │ │ │ │ │ │ │ │ │ │ ├── reflect.js │ │ │ │ │ │ │ │ │ │ ├── short.js │ │ │ │ │ │ │ │ │ │ ├── string.js │ │ │ │ │ │ │ │ │ │ ├── usage-options.js │ │ │ │ │ │ │ │ │ │ └── xup.js │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ │ │ └── wordwrap │ │ │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ │ │ ├── README.markdown │ │ │ │ │ │ │ │ │ │ │ ├── example │ │ │ │ │ │ │ │ │ │ │ ├── center.js │ │ │ │ │ │ │ │ │ │ │ └── meat.js │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ │ │ ├── break.js │ │ │ │ │ │ │ │ │ │ │ ├── idleness.txt │ │ │ │ │ │ │ │ │ │ │ └── wrap.js │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ ├── readme.markdown │ │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ │ ├── _.js │ │ │ │ │ │ │ │ │ │ ├── _ │ │ │ │ │ │ │ │ │ │ ├── argv.js │ │ │ │ │ │ │ │ │ │ └── bin.js │ │ │ │ │ │ │ │ │ │ ├── parse.js │ │ │ │ │ │ │ │ │ │ └── usage.js │ │ │ │ │ │ │ │ └── source-map │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ │ ├── Makefile.dryice.js │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ ├── build │ │ │ │ │ │ │ │ │ ├── assert-shim.js │ │ │ │ │ │ │ │ │ ├── mini-require.js │ │ │ │ │ │ │ │ │ ├── prefix-source-map.jsm │ │ │ │ │ │ │ │ │ ├── prefix-utils.jsm │ │ │ │ │ │ │ │ │ ├── suffix-browser.js │ │ │ │ │ │ │ │ │ ├── suffix-source-map.jsm │ │ │ │ │ │ │ │ │ ├── suffix-utils.jsm │ │ │ │ │ │ │ │ │ ├── test-prefix.js │ │ │ │ │ │ │ │ │ └── test-suffix.js │ │ │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ │ ├── source-map.js │ │ │ │ │ │ │ │ │ └── source-map │ │ │ │ │ │ │ │ │ │ ├── array-set.js │ │ │ │ │ │ │ │ │ │ ├── base64-vlq.js │ │ │ │ │ │ │ │ │ │ ├── base64.js │ │ │ │ │ │ │ │ │ │ ├── binary-search.js │ │ │ │ │ │ │ │ │ │ ├── source-map-consumer.js │ │ │ │ │ │ │ │ │ │ ├── source-map-generator.js │ │ │ │ │ │ │ │ │ │ ├── source-node.js │ │ │ │ │ │ │ │ │ │ └── util.js │ │ │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ │ └── amdefine │ │ │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ │ ├── amdefine.js │ │ │ │ │ │ │ │ │ │ ├── intercept.js │ │ │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ ├── run-tests.js │ │ │ │ │ │ │ │ │ └── source-map │ │ │ │ │ │ │ │ │ ├── test-api.js │ │ │ │ │ │ │ │ │ ├── test-array-set.js │ │ │ │ │ │ │ │ │ ├── test-base64-vlq.js │ │ │ │ │ │ │ │ │ ├── test-base64.js │ │ │ │ │ │ │ │ │ ├── test-binary-search.js │ │ │ │ │ │ │ │ │ ├── test-dog-fooding.js │ │ │ │ │ │ │ │ │ ├── test-source-map-consumer.js │ │ │ │ │ │ │ │ │ ├── test-source-map-generator.js │ │ │ │ │ │ │ │ │ ├── test-source-node.js │ │ │ │ │ │ │ │ │ ├── test-util.js │ │ │ │ │ │ │ │ │ └── util.js │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ │ ├── compress │ │ │ │ │ │ │ │ │ ├── arrays.js │ │ │ │ │ │ │ │ │ ├── blocks.js │ │ │ │ │ │ │ │ │ ├── conditionals.js │ │ │ │ │ │ │ │ │ ├── dead-code.js │ │ │ │ │ │ │ │ │ ├── debugger.js │ │ │ │ │ │ │ │ │ ├── drop-unused.js │ │ │ │ │ │ │ │ │ ├── issue-105.js │ │ │ │ │ │ │ │ │ ├── issue-12.js │ │ │ │ │ │ │ │ │ ├── issue-22.js │ │ │ │ │ │ │ │ │ ├── issue-44.js │ │ │ │ │ │ │ │ │ ├── issue-59.js │ │ │ │ │ │ │ │ │ ├── labels.js │ │ │ │ │ │ │ │ │ ├── loops.js │ │ │ │ │ │ │ │ │ ├── properties.js │ │ │ │ │ │ │ │ │ ├── sequences.js │ │ │ │ │ │ │ │ │ └── switch.js │ │ │ │ │ │ │ │ └── run-tests.js │ │ │ │ │ │ │ │ └── tools │ │ │ │ │ │ │ │ └── node.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── fixture │ │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ │ └── jquery.min.js │ │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── through │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE.APACHE2 │ │ │ │ │ │ ├── LICENSE.MIT │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── readme.markdown │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── auto-destroy.js │ │ │ │ │ │ │ ├── buffering.js │ │ │ │ │ │ │ ├── end.js │ │ │ │ │ │ │ └── index.js │ │ │ │ │ └── uglify-js │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── bin │ │ │ │ │ │ └── uglifyjs │ │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── ast.js │ │ │ │ │ │ ├── compress.js │ │ │ │ │ │ ├── mozilla-ast.js │ │ │ │ │ │ ├── output.js │ │ │ │ │ │ ├── parse.js │ │ │ │ │ │ ├── scope.js │ │ │ │ │ │ ├── sourcemap.js │ │ │ │ │ │ ├── transform.js │ │ │ │ │ │ └── utils.js │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ ├── async │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ └── async.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── optimist │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── example │ │ │ │ │ │ │ │ ├── bool.js │ │ │ │ │ │ │ │ ├── boolean_double.js │ │ │ │ │ │ │ │ ├── boolean_single.js │ │ │ │ │ │ │ │ ├── default_hash.js │ │ │ │ │ │ │ │ ├── default_singles.js │ │ │ │ │ │ │ │ ├── divide.js │ │ │ │ │ │ │ │ ├── line_count.js │ │ │ │ │ │ │ │ ├── line_count_options.js │ │ │ │ │ │ │ │ ├── line_count_wrap.js │ │ │ │ │ │ │ │ ├── nonopt.js │ │ │ │ │ │ │ │ ├── reflect.js │ │ │ │ │ │ │ │ ├── short.js │ │ │ │ │ │ │ │ ├── string.js │ │ │ │ │ │ │ │ ├── usage-options.js │ │ │ │ │ │ │ │ └── xup.js │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ └── wordwrap │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ ├── README.markdown │ │ │ │ │ │ │ │ │ ├── example │ │ │ │ │ │ │ │ │ ├── center.js │ │ │ │ │ │ │ │ │ └── meat.js │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ ├── break.js │ │ │ │ │ │ │ │ │ ├── idleness.txt │ │ │ │ │ │ │ │ │ └── wrap.js │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ ├── readme.markdown │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ ├── _.js │ │ │ │ │ │ │ │ ├── _ │ │ │ │ │ │ │ │ ├── argv.js │ │ │ │ │ │ │ │ └── bin.js │ │ │ │ │ │ │ │ ├── parse.js │ │ │ │ │ │ │ │ └── usage.js │ │ │ │ │ │ ├── source-map │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── Makefile.dryice.js │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── build │ │ │ │ │ │ │ │ ├── assert-shim.js │ │ │ │ │ │ │ │ ├── mini-require.js │ │ │ │ │ │ │ │ ├── prefix-source-map.jsm │ │ │ │ │ │ │ │ ├── prefix-utils.jsm │ │ │ │ │ │ │ │ ├── suffix-browser.js │ │ │ │ │ │ │ │ ├── suffix-source-map.jsm │ │ │ │ │ │ │ │ ├── suffix-utils.jsm │ │ │ │ │ │ │ │ ├── test-prefix.js │ │ │ │ │ │ │ │ └── test-suffix.js │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ ├── source-map.js │ │ │ │ │ │ │ │ └── source-map │ │ │ │ │ │ │ │ │ ├── array-set.js │ │ │ │ │ │ │ │ │ ├── base64-vlq.js │ │ │ │ │ │ │ │ │ ├── base64.js │ │ │ │ │ │ │ │ │ ├── binary-search.js │ │ │ │ │ │ │ │ │ ├── source-map-consumer.js │ │ │ │ │ │ │ │ │ ├── source-map-generator.js │ │ │ │ │ │ │ │ │ ├── source-node.js │ │ │ │ │ │ │ │ │ └── util.js │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ └── amdefine │ │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ ├── amdefine.js │ │ │ │ │ │ │ │ │ ├── intercept.js │ │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ ├── run-tests.js │ │ │ │ │ │ │ │ └── source-map │ │ │ │ │ │ │ │ ├── test-api.js │ │ │ │ │ │ │ │ ├── test-array-set.js │ │ │ │ │ │ │ │ ├── test-base64-vlq.js │ │ │ │ │ │ │ │ ├── test-base64.js │ │ │ │ │ │ │ │ ├── test-binary-search.js │ │ │ │ │ │ │ │ ├── test-dog-fooding.js │ │ │ │ │ │ │ │ ├── test-source-map-consumer.js │ │ │ │ │ │ │ │ ├── test-source-map-generator.js │ │ │ │ │ │ │ │ ├── test-source-node.js │ │ │ │ │ │ │ │ ├── test-util.js │ │ │ │ │ │ │ │ └── util.js │ │ │ │ │ │ └── uglify-to-browserify │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── test │ │ │ │ │ │ ├── compress │ │ │ │ │ │ │ ├── arrays.js │ │ │ │ │ │ │ ├── blocks.js │ │ │ │ │ │ │ ├── concat-strings.js │ │ │ │ │ │ │ ├── conditionals.js │ │ │ │ │ │ │ ├── dead-code.js │ │ │ │ │ │ │ ├── debugger.js │ │ │ │ │ │ │ ├── drop-unused.js │ │ │ │ │ │ │ ├── issue-105.js │ │ │ │ │ │ │ ├── issue-12.js │ │ │ │ │ │ │ ├── issue-126.js │ │ │ │ │ │ │ ├── issue-143.js │ │ │ │ │ │ │ ├── issue-22.js │ │ │ │ │ │ │ ├── issue-267.js │ │ │ │ │ │ │ ├── issue-269.js │ │ │ │ │ │ │ ├── issue-44.js │ │ │ │ │ │ │ ├── issue-59.js │ │ │ │ │ │ │ ├── labels.js │ │ │ │ │ │ │ ├── loops.js │ │ │ │ │ │ │ ├── negate-iife.js │ │ │ │ │ │ │ ├── properties.js │ │ │ │ │ │ │ ├── sequences.js │ │ │ │ │ │ │ ├── switch.js │ │ │ │ │ │ │ └── typeof.js │ │ │ │ │ │ └── run-tests.js │ │ │ │ │ │ └── tools │ │ │ │ │ │ └── node.js │ │ │ │ ├── package.json │ │ │ │ ├── template.js │ │ │ │ └── test │ │ │ │ │ └── index.js │ │ │ ├── url │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── .zuul.yml │ │ │ │ ├── README.md │ │ │ │ ├── package.json │ │ │ │ ├── test.js │ │ │ │ └── url.js │ │ │ ├── util │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── .zuul.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── 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 │ │ │ │ ├── node_modules │ │ │ │ └── indexof │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── component.json │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ ├── readme.markdown │ │ │ │ └── test │ │ │ │ └── vm.js │ │ ├── package.json │ │ ├── readme.markdown │ │ └── test │ │ │ ├── args.js │ │ │ ├── backbone.js │ │ │ ├── bin.js │ │ │ ├── bin_entry.js │ │ │ ├── bom.js │ │ │ ├── bom │ │ │ └── hello.js │ │ │ ├── buffer.js │ │ │ ├── bundle.js │ │ │ ├── bundle_external.js │ │ │ ├── bundle_external │ │ │ ├── boop.js │ │ │ ├── main.js │ │ │ └── robot.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 │ │ │ ├── crypto.js │ │ │ ├── cycle.js │ │ │ ├── cycle │ │ │ ├── README.md │ │ │ ├── entry.js │ │ │ ├── mod1 │ │ │ │ ├── a.js │ │ │ │ └── b.js │ │ │ └── mod2 │ │ │ │ ├── a.js │ │ │ │ └── b.js │ │ │ ├── dedupe-nomap.js │ │ │ ├── dep.js │ │ │ ├── dnode.js │ │ │ ├── dollar.js │ │ │ ├── dollar │ │ │ └── dollar │ │ │ │ └── index.js │ │ │ ├── double_buffer.js │ │ │ ├── double_buffer │ │ │ ├── explicit.js │ │ │ ├── implicit.js │ │ │ └── main.js │ │ │ ├── dup │ │ │ ├── foo-dup.js │ │ │ ├── foo.js │ │ │ └── index.js │ │ │ ├── entry.js │ │ │ ├── entry │ │ │ ├── main.js │ │ │ ├── one.js │ │ │ └── two.js │ │ │ ├── entry_exec.js │ │ │ ├── entry_exec │ │ │ ├── fail.js │ │ │ └── main.js │ │ │ ├── error_code.js │ │ │ ├── error_code │ │ │ └── src.js │ │ │ ├── export.js │ │ │ ├── export │ │ │ └── entry.js │ │ │ ├── external.js │ │ │ ├── external │ │ │ ├── main.js │ │ │ └── x.js │ │ │ ├── external_args │ │ │ └── main.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 │ │ │ ├── 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 │ │ │ └── tick.js │ │ │ ├── hash.js │ │ │ ├── hash │ │ │ ├── foo │ │ │ │ ├── other.js │ │ │ │ └── two.js │ │ │ ├── main.js │ │ │ ├── one.js │ │ │ └── other.js │ │ │ ├── hash_instance.js │ │ │ ├── hash_instance │ │ │ ├── foo │ │ │ │ └── two.js │ │ │ ├── main.js │ │ │ └── one.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 │ │ │ ├── id_hash.js │ │ │ ├── id_hash │ │ │ ├── main.js │ │ │ └── require.js │ │ │ ├── ignore.js │ │ │ ├── ignore │ │ │ ├── by-id.js │ │ │ ├── main.js │ │ │ └── skip.js │ │ │ ├── json.js │ │ │ ├── json │ │ │ ├── beep.json │ │ │ └── main.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 │ │ │ ├── no_builtins.js │ │ │ ├── no_builtins │ │ │ ├── extra │ │ │ │ ├── fs.js │ │ │ │ └── tls.js │ │ │ ├── main.js │ │ │ └── x.txt │ │ │ ├── node_modules │ │ │ └── beep │ │ │ │ └── index.js │ │ │ ├── pack.js │ │ │ ├── paths.js │ │ │ ├── paths │ │ │ ├── main.js │ │ │ ├── x │ │ │ │ ├── aaa │ │ │ │ │ └── index.js │ │ │ │ └── ccc │ │ │ │ │ └── index.js │ │ │ └── y │ │ │ │ ├── bbb │ │ │ │ └── index.js │ │ │ │ └── ccc │ │ │ │ └── index.js │ │ │ ├── process.js │ │ │ ├── process │ │ │ ├── main.js │ │ │ ├── one.js │ │ │ └── two.js │ │ │ ├── require_cache.js │ │ │ ├── retarget.js │ │ │ ├── reverse_multi_bundle.js │ │ │ ├── reverse_multi_bundle │ │ │ ├── app.js │ │ │ ├── arbitrary.js │ │ │ ├── lazy.js │ │ │ └── shared.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 │ │ │ ├── subdep.js │ │ │ ├── subdep │ │ │ ├── index.js │ │ │ └── package.json │ │ │ ├── tr.js │ │ │ ├── tr │ │ │ ├── f.js │ │ │ ├── main.js │ │ │ ├── package.json │ │ │ └── subdir │ │ │ │ └── g.js │ │ │ ├── tr_args.js │ │ │ ├── tr_args │ │ │ ├── main.js │ │ │ └── tr.js │ │ │ ├── unicode.js │ │ │ ├── unicode │ │ │ ├── main.js │ │ │ ├── one.js │ │ │ └── two.js │ │ │ ├── util.js │ │ │ ├── yield.js │ │ │ └── yield │ │ │ ├── f.js │ │ │ └── main.js │ └── partialify │ │ ├── .npmignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── custom.js │ │ ├── index.js │ │ ├── node_modules │ │ ├── string-to-js │ │ │ ├── .npmignore │ │ │ ├── History.md │ │ │ ├── Makefile │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ └── through │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.APACHE2 │ │ │ ├── LICENSE.MIT │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── readme.markdown │ │ │ └── test │ │ │ ├── auto-destroy.js │ │ │ ├── buffering.js │ │ │ ├── end.js │ │ │ └── index.js │ │ ├── package.json │ │ └── test │ │ ├── fixtures │ │ ├── fixture.css │ │ ├── fixture.html │ │ ├── fixture.json │ │ └── fixture.xml │ │ ├── index.js │ │ └── runners │ │ ├── css.js │ │ ├── defaults.js │ │ ├── extras.js │ │ ├── html.js │ │ ├── json.js │ │ └── unique.js │ ├── package.json │ └── template.html └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/*b* 2 | node_modules/a* 3 | -------------------------------------------------------------------------------- /dist/bundle.css: -------------------------------------------------------------------------------- 1 | h3 { 2 | font-family: Helvetica, sans-serif; 3 | color: darkblue; 4 | } 5 | 6 | .pList > li { 7 | font-family: Helvetica, sans-serif; 8 | font-size: 1.1em; 9 | color: darkgreen; 10 | } -------------------------------------------------------------------------------- /index.css: -------------------------------------------------------------------------------- 1 | h3 { 2 | font-family: Helvetica, sans-serif; 3 | color: darkblue; 4 | } 5 | 6 | @import "demo-component"; 7 | -------------------------------------------------------------------------------- /node_modules/demo-component/DemoController.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function DemoController ($scope) { 4 | 5 | $scope.showMessage = function () { 6 | alert('There are ' + $scope.list.length + ' items in the list'); 7 | } 8 | 9 | } 10 | -------------------------------------------------------------------------------- /node_modules/demo-component/index.css: -------------------------------------------------------------------------------- 1 | .pList > li { 2 | font-family: Helvetica, sans-serif; 3 | font-size: 1.1em; 4 | color: darkgreen; 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/demo-component/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function () { 4 | 5 | return { 6 | restrict: 'E', 7 | scope: { 8 | list: '=' 9 | }, 10 | template: require('./template.html'), 11 | controller: require('./DemoController') 12 | }; 13 | 14 | }; 15 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/.bin/browserify: -------------------------------------------------------------------------------- 1 | ../browserify/bin/cmd.js -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/.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 | tmp 15 | 16 | npm-debug.log 17 | node_modules 18 | 19 | bundle.js 20 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - 0.10 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/examples/expose-jquery/cli-diag.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | BROWSERIFYSHIM_DIAGNOSTICS=1 ./node_modules/.bin/browserify -d . > js/bundle.js 4 | 5 | open index.html 6 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/examples/expose-jquery/cli.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | ./node_modules/.bin/browserify -d . > js/bundle.js 4 | 5 | open index.html 6 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/examples/expose-jquery/js/entry.js: -------------------------------------------------------------------------------- 1 | var $ = require('jquery') 2 | , jqVersion = $().jquery; 3 | 4 | $('#jq-version').text(jqVersion); 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/examples/shim-jquery-external/config/shim.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | '../js/vendor/jquery.js': { exports: '$' } 3 | } 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/examples/shim-jquery-external/js/entry.js: -------------------------------------------------------------------------------- 1 | var $ = require('./vendor/jquery') 2 | , jqVersion = $().jquery; 3 | 4 | $('#jq-version').text(jqVersion); 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/examples/shim-jquery-external/js/vendor/.npmignore: -------------------------------------------------------------------------------- 1 | jquery.js 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/examples/shim-jquery/cli-diag.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | BROWSERIFYSHIM_DIAGNOSTICS=1 ../../node_modules/.bin/browserify -d . > js/bundle.js 4 | 5 | open index.html 6 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/examples/shim-jquery/cli.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | ../../node_modules/.bin/browserify -d . > js/bundle.js 4 | 5 | open index.html 6 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/examples/shim-jquery/js/entry.js: -------------------------------------------------------------------------------- 1 | var $ = require('jquery') 2 | , jqVersion = $().jquery; 3 | 4 | $('#jq-version').text(jqVersion); 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/examples/shim-jquery/js/vendor/.npmignore: -------------------------------------------------------------------------------- 1 | jquery.js 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/.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 | npm-debug.log 15 | node_modules 16 | bundle.js 17 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/example/build.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | EXPOSIFY_CONFIG='{ "jquery": "$", "three": "THREE" }' \ 4 | ../node_modules/.bin/browserify --debug -t exposify main.js > bundle.js 5 | open index.html 6 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/example/main.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var $ = require('jquery') 4 | , THREE = require('three') 5 | 6 | console.log('THREE revision: ', THREE.REVISION); 7 | console.log('jquery version: ', $().jquery); 8 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/node_modules/detective/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/node_modules/detective/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - 0.10 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/node_modules/detective/example/strings.js: -------------------------------------------------------------------------------- 1 | var detective = require('../'); 2 | var fs = require('fs'); 3 | 4 | var src = fs.readFileSync(__dirname + '/strings_src.js'); 5 | var requires = detective(src); 6 | console.dir(requires); 7 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/node_modules/detective/example/strings_src.js: -------------------------------------------------------------------------------- 1 | var a = require('a'); 2 | var b = require('b'); 3 | var c = require('c'); 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/node_modules/detective/node_modules/.bin/escodegen: -------------------------------------------------------------------------------- 1 | ../escodegen/bin/escodegen.js -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/node_modules/detective/node_modules/.bin/esgenerate: -------------------------------------------------------------------------------- 1 | ../escodegen/bin/esgenerate.js -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/node_modules/detective/node_modules/.bin/esparse: -------------------------------------------------------------------------------- 1 | ../esprima/bin/esparse.js -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/node_modules/detective/node_modules/.bin/esvalidate: -------------------------------------------------------------------------------- 1 | ../esprima/bin/esvalidate.js -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/node_modules/detective/node_modules/escodegen/node_modules/source-map/.npmignore: -------------------------------------------------------------------------------- 1 | dist/* 2 | node_modules/* 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/node_modules/detective/node_modules/escodegen/node_modules/source-map/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - "0.10" -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/node_modules/detective/node_modules/escodegen/node_modules/source-map/build/test-suffix.js: -------------------------------------------------------------------------------- 1 | function run_test() { 2 | runSourceMapTests('{THIS_MODULE}', do_throw); 3 | } 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/node_modules/detective/node_modules/esprima/.npmignore: -------------------------------------------------------------------------------- 1 | .git 2 | .travis.yml 3 | /node_modules/ 4 | /assets/ 5 | /coverage/ 6 | /demo/ 7 | /test/3rdparty 8 | /tools/ 9 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/node_modules/detective/node_modules/esprima/test/coverage.footer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/node_modules/detective/test/files/both.js: -------------------------------------------------------------------------------- 1 | require('a'); 2 | require('b'); 3 | require('c'+x); 4 | var moo = require('d'+y).moo; 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/node_modules/detective/test/files/chained.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | require('c').hello().goodbye() 4 | require('b').hello() 5 | require('a') 6 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/node_modules/detective/test/files/shebang.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | var a = require('a'); 4 | var b = require('b'); 5 | var c = require('c'); 6 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/node_modules/detective/test/files/sparse-array.js: -------------------------------------------------------------------------------- 1 | var o = [,,,,] 2 | 3 | require('./foo') 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/node_modules/through2/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/node_modules/through2/node_modules/readable-stream/.npmignore: -------------------------------------------------------------------------------- 1 | build/ 2 | test/ 3 | examples/ 4 | fs.js 5 | zlib.js -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/node_modules/through2/node_modules/readable-stream/duplex.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_duplex.js") 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/node_modules/through2/node_modules/readable-stream/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/demo-component/node_modules/browserify-shim/node_modules/exposify/node_modules/through2/node_modules/readable-stream/node_modules/inherits/inherits.js: -------------------------------------------------------------------------------- 1 | module.exports = require('util').inherits 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/node_modules/through2/node_modules/readable-stream/node_modules/isarray/index.js: -------------------------------------------------------------------------------- 1 | module.exports = Array.isArray || function (arr) { 2 | return Object.prototype.toString.call(arr) == '[object Array]'; 3 | }; 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/node_modules/through2/node_modules/readable-stream/node_modules/string_decoder/.npmignore: -------------------------------------------------------------------------------- 1 | build 2 | test 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/node_modules/through2/node_modules/readable-stream/passthrough.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_passthrough.js") 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/node_modules/through2/node_modules/readable-stream/transform.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_transform.js") 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/node_modules/through2/node_modules/readable-stream/writable.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_writable.js") 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/node_modules/through2/node_modules/xtend/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/node_modules/through2/node_modules/xtend/Makefile: -------------------------------------------------------------------------------- 1 | browser: 2 | node ./support/compile 3 | 4 | .PHONY: browser -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/node_modules/through2/node_modules/xtend/node_modules/object-keys/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/node_modules/through2/node_modules/xtend/node_modules/object-keys/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | - "0.8" 5 | - "0.6" 6 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/node_modules/through2/node_modules/xtend/node_modules/object-keys/index.js: -------------------------------------------------------------------------------- 1 | module.exports = Object.keys || require('./shim'); 2 | 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/node_modules/through2/node_modules/xtend/node_modules/object-keys/test/index.js: -------------------------------------------------------------------------------- 1 | 2 | require('./foreach'); 3 | require('./isArguments'); 4 | 5 | require('./shim'); 6 | 7 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/node_modules/transformify/.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 | npm-debug.log 15 | node_modules 16 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/node_modules/transformify/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/node_modules/transformify/node_modules/readable-stream/.npmignore: -------------------------------------------------------------------------------- 1 | build/ 2 | test/ 3 | examples/ 4 | fs.js 5 | zlib.js -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/node_modules/transformify/node_modules/readable-stream/duplex.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_duplex.js") 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/node_modules/transformify/node_modules/readable-stream/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/demo-component/node_modules/browserify-shim/node_modules/exposify/node_modules/transformify/node_modules/readable-stream/node_modules/inherits/inherits.js: -------------------------------------------------------------------------------- 1 | module.exports = require('util').inherits 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/node_modules/transformify/node_modules/readable-stream/node_modules/isarray/index.js: -------------------------------------------------------------------------------- 1 | module.exports = Array.isArray || function (arr) { 2 | return Object.prototype.toString.call(arr) == '[object Array]'; 3 | }; 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/node_modules/transformify/node_modules/readable-stream/node_modules/string_decoder/.npmignore: -------------------------------------------------------------------------------- 1 | build 2 | test 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/node_modules/transformify/node_modules/readable-stream/passthrough.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_passthrough.js") 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/node_modules/transformify/node_modules/readable-stream/transform.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_transform.js") 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/node_modules/transformify/node_modules/readable-stream/writable.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_writable.js") 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/test/fixtures/jquery-only-spaces.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var $ = require( 'jquery' ) 4 | , path = require('path'); 5 | 6 | var go = module.exports = function () { 7 | return $.jquery(); 8 | }; 9 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/test/fixtures/jquery-only.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var $ = require('jquery') 4 | , path = require('path'); 5 | 6 | var go = module.exports = function () { 7 | return $.jquery(); 8 | }; 9 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/test/fixtures/lodash-noconflict.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var _ = require('lodash'); 4 | 5 | var go = module.exports = function () { 6 | return _.lo; 7 | }; 8 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/test/fixtures/three-only.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var three = require('three'); 4 | 5 | var go = module.exports = function () { 6 | return three.version; 7 | }; 8 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bclinkinbeard/angular-component-demo/5ed788b14becc11818192667616ac0cd25ee879b/node_modules/demo-component/node_modules/browserify-shim/node_modules/exposify/test/index.js -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/find-parent-dir/.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 | npm-debug.log 15 | node_modules 16 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/find-parent-dir/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/find-parent-dir/example/git-repo-root.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var findParentDir = require('..'); 4 | findParentDir(__dirname, '.git', function (err, dir) { 5 | if (err) return console.error(err); 6 | console.log(dir); 7 | }); 8 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/resolve/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/resolve/example/async.js: -------------------------------------------------------------------------------- 1 | var resolve = require('../'); 2 | resolve('tap', { basedir: __dirname }, function (err, res) { 3 | if (err) console.error(err) 4 | else console.log(res) 5 | }); 6 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/resolve/example/sync.js: -------------------------------------------------------------------------------- 1 | var resolve = require('../'); 2 | var res = resolve.sync('tap', { basedir: __dirname }); 3 | console.log(res); 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/resolve/index.js: -------------------------------------------------------------------------------- 1 | var core = require('./lib/core'); 2 | exports = module.exports = require('./lib/async'); 3 | exports.core = core; 4 | exports.isCore = function (x) { return core[x] }; 5 | exports.sync = require('./lib/sync'); 6 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/resolve/lib/core.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./core.json').reduce(function (acc, x) { 2 | acc[x] = true; 3 | return acc; 4 | }, {}); 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/resolve/test/node_path/x/aaa/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'A' 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/resolve/test/node_path/x/ccc/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'C' 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/resolve/test/node_path/y/bbb/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'B' 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/resolve/test/node_path/y/ccc/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'CY' 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/resolve/test/resolver/bar/node_modules/foo/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/resolve/test/resolver/baz/doom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bclinkinbeard/angular-component-demo/5ed788b14becc11818192667616ac0cd25ee879b/node_modules/demo-component/node_modules/browserify-shim/node_modules/resolve/test/resolver/baz/doom.js -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/resolve/test/resolver/baz/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main" : "quux.js" 3 | } 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/resolve/test/resolver/baz/quux.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/resolve/test/resolver/biz/node_modules/garply/lib/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'hello garply'; 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/resolve/test/resolver/biz/node_modules/garply/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main" : "./lib" 3 | } 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/resolve/test/resolver/biz/node_modules/grux/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('tiv') * 100; 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/resolve/test/resolver/biz/node_modules/tiv/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 3; 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/resolve/test/resolver/cup.coffee: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/resolve/test/resolver/foo.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/resolve/test/resolver/incorrect_main/index.js: -------------------------------------------------------------------------------- 1 | // this is the actual main file 'index.js', not 'wrong.js' like the package.json would indicate 2 | module.exports = 1; 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/resolve/test/resolver/incorrect_main/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main" : "wrong.js" 3 | } 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/resolve/test/resolver/mug.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bclinkinbeard/angular-component-demo/5ed788b14becc11818192667616ac0cd25ee879b/node_modules/demo-component/node_modules/browserify-shim/node_modules/resolve/test/resolver/mug.coffee -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/resolve/test/resolver/mug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bclinkinbeard/angular-component-demo/5ed788b14becc11818192667616ac0cd25ee879b/node_modules/demo-component/node_modules/browserify-shim/node_modules/resolve/test/resolver/mug.js -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/resolve/test/resolver/quux/foo/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/resolve/test/resolver/without_basedir/main.js: -------------------------------------------------------------------------------- 1 | resolve = require('../../../'); 2 | 3 | module.exports = function(t, cb) { 4 | resolve('mymodule', null, cb); 5 | } 6 | 7 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/resolve/test/resolver/without_basedir/node_modules/mymodule.js: -------------------------------------------------------------------------------- 1 | module.exports = "The tools we use have a profound (and devious!) influence on our thinking habits, and, therefore, on our thinking abilities.- E. Dijkstra" 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/node_modules/through/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | - "0.10" 6 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/test/bower/components/jquery/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "components-jquery", 3 | "version": "1.10.2", 4 | "description": "jQuery component", 5 | "keywords": ["jquery"], 6 | "main": "./jquery.js" 7 | } 8 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/test/deps/extshim/config/shim.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | 'non-cjs': { exports : 'noncjs' }, 5 | 'non-cjs-dep': { exports: 'noncjsdep', depends: { 'non-cjs': 'noncjs' } } 6 | }; 7 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/test/deps/extshim/vendor/non-cjs-dep.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | // expecting nodeps to have been required before me and attached itself to the window 4 | window.noncjsdep = { noncjs: window.noncjs }; 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/test/deps/extshim/vendor/non-cjs.js: -------------------------------------------------------------------------------- 1 | window.noncjs = { 2 | name: 'non-cjs' 3 | , version: 1.1 4 | }; 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/test/deps/inlineshim/vendor/non-cjs-dep.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | // expecting nodeps to have been required before me and attached itself to the window 4 | window.noncjsdep = { noncjs: window.noncjs }; 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/test/deps/inlineshim/vendor/non-cjs.js: -------------------------------------------------------------------------------- 1 | window.noncjs = { 2 | name: 'non-cjs' 3 | , version: 1.1 4 | }; 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/test/exposify/extshim/config/shim.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | 'non-cjs': { exports : 'noncjs' }, 5 | 'jquery': { exports: 'global:$' } 6 | }; 7 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/test/exposify/extshim/main.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var noncjs = require('non-cjs'); 4 | 5 | var go = module.exports = function () { 6 | console.log('version', noncjs.version); 7 | return { noncjs: noncjs, $: require('jquery') }; 8 | }; 9 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/test/exposify/extshim/vendor/non-cjs.js: -------------------------------------------------------------------------------- 1 | window.noncjs = { 2 | name: 'non-cjs' 3 | , version: 1.1 4 | }; 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/test/exposify/inlineshim/vendor/non-cjs.js: -------------------------------------------------------------------------------- 1 | window.noncjs = { 2 | name: 'non-cjs' 3 | , version: 1.1 4 | }; 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/test/multideps/extshim/vendor/non-cjs-core.js: -------------------------------------------------------------------------------- 1 | window.noncjscore = { 2 | name: 'core' 3 | , version: 1.0 4 | }; 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/test/multideps/extshim/vendor/non-cjs.js: -------------------------------------------------------------------------------- 1 | window.noncjs = { 2 | name: 'non-cjs' 3 | , version: 1.1 4 | }; 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/test/multideps/inlineshim/vendor/non-cjs-core.js: -------------------------------------------------------------------------------- 1 | window.noncjscore = { 2 | name: 'core' 3 | , version: 1.0 4 | }; 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/test/multideps/inlineshim/vendor/non-cjs.js: -------------------------------------------------------------------------------- 1 | window.noncjs = { 2 | name: 'non-cjs' 3 | , version: 1.1 4 | }; 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/test/nodeps/extshim-exposed/config/shim.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | 'non-cjs': { exports : 'noncjs' } 5 | }; 6 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/test/nodeps/extshim-exposed/vendor/non-cjs.js: -------------------------------------------------------------------------------- 1 | window.noncjs = { 2 | name: 'non-cjs' 3 | , version: 1.1 4 | }; 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/test/nodeps/extshim/config/shim.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | '../vendor/non-cjs.js': { exports : 'noncjs' } 5 | }; 6 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/test/nodeps/extshim/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "./main.js", 3 | "browserify": { 4 | "transform": [ 5 | "browserify-shim" 6 | ] 7 | }, 8 | "browserify-shim": "./config/shim.js" 9 | } 10 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/test/nodeps/extshim/vendor/non-cjs.js: -------------------------------------------------------------------------------- 1 | window.noncjs = { 2 | name: 'non-cjs' 3 | , version: 1.1 4 | }; 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/test/nodeps/inlineshim-exposed/vendor/non-cjs.js: -------------------------------------------------------------------------------- 1 | window.noncjs = { 2 | name: 'non-cjs' 3 | , version: 1.1 4 | }; 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/test/nodeps/inlineshim/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "./main.js", 3 | "browserify": { 4 | "transform": [ 5 | "browserify-shim" 6 | ] 7 | }, 8 | "browserify-shim": { 9 | "./vendor/non-cjs.js": "noncjs" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/test/nodeps/inlineshim/vendor/non-cjs.js: -------------------------------------------------------------------------------- 1 | window.noncjs = { 2 | name: 'non-cjs' 3 | , version: 1.1 4 | }; 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/test/packs/vendor/non-cjs.js: -------------------------------------------------------------------------------- 1 | // expects browserify-shim to require and attach sub1noncjs and sub2noncjsdep 2 | window.rootnoncjs = { 3 | sub1noncjs: window.sub1noncjs, 4 | sub2noncjsdep: window.sub2noncjsdep 5 | }; 6 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/test/shim/fixtures/entry-requires-root-level-var.js: -------------------------------------------------------------------------------- 1 | var rootvar = require('./shims/root-level-var'); 2 | 3 | // expose require to tests 4 | window.require = require; 5 | 6 | module.exports = rootvar; 7 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/test/shim/fixtures/foo.js: -------------------------------------------------------------------------------- 1 | module.exports = function () { return 'foo'; }; 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/test/shim/fixtures/shims/lib-depending-on-jquery-and-_.js: -------------------------------------------------------------------------------- 1 | var dep = {}; 2 | window.dep = dep; 3 | dep.jqVersion = window.$().jquery; 4 | dep._ = window._; 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/test/shim/fixtures/shims/lib-depending-on-jquery.js: -------------------------------------------------------------------------------- 1 | var dep = {}; 2 | window.dep = dep; 3 | dep.jqVersion = window.$().jquery; 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/test/shim/fixtures/shims/lib-exporting-_.js: -------------------------------------------------------------------------------- 1 | var _ = function () { return 'super underscore' } 2 | module.exports = _; 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify-shim/test/shim/fixtures/shims/root-level-var.js: -------------------------------------------------------------------------------- 1 | var nineties = {}; 2 | nineties.message = "I declare vars on the script level and expect them to get attached to the window because I'm doin' it 90s style baby!"; 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/.npmignore: -------------------------------------------------------------------------------- 1 | .gitignore 2 | example/source_maps/js/build/bundle.js 3 | example/multiple_bundles/static/beep.js 4 | example/multiple_bundles/static/boop.js 5 | example/multiple_bundles/static/common.js 6 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | before_install: 6 | - npm install -g npm@~1.4.6 7 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/example/api/browser/bar.js: -------------------------------------------------------------------------------- 1 | module.exports = function (n) { return n * 3 }; 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/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/demo-component/node_modules/browserify/example/api/browser/main.js: -------------------------------------------------------------------------------- 1 | var foo = require('./foo'); 2 | console.log(foo(5)); 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/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/demo-component/node_modules/browserify/example/multiple_bundles/beep.js: -------------------------------------------------------------------------------- 1 | var robot = require('./robot'); 2 | console.log(robot('beep')); 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/example/multiple_bundles/boop.js: -------------------------------------------------------------------------------- 1 | var robot = require('./robot'); 2 | console.log(robot('boop')); 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/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/demo-component/node_modules/browserify/example/multiple_bundles/robot.js: -------------------------------------------------------------------------------- 1 | module.exports = function (s) { return s.toUpperCase() + '!' }; 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/example/multiple_bundles/static/beep.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/example/multiple_bundles/static/boop.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/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/demo-component/node_modules/browserify/example/source_maps/js/build/.npmignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/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/demo-component/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/demo-component/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/demo-component/node_modules/browserify/lib/_empty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bclinkinbeard/angular-component-demo/5ed788b14becc11818192667616ac0cd25ee879b/node_modules/demo-component/node_modules/browserify/lib/_empty.js -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/lib/_exclude.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bclinkinbeard/angular-component-demo/5ed788b14becc11818192667616ac0cd25ee879b/node_modules/demo-component/node_modules/browserify/lib/_exclude.js -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/.bin/browser-pack: -------------------------------------------------------------------------------- 1 | ../browser-pack/bin/cmd.js -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/.bin/deps-sort: -------------------------------------------------------------------------------- 1 | ../deps-sort/bin/cmd.js -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/.bin/insert-module-globals: -------------------------------------------------------------------------------- 1 | ../insert-module-globals/bin/cmd.js -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/.bin/module-deps: -------------------------------------------------------------------------------- 1 | ../module-deps/cmd.js -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/.bin/umd: -------------------------------------------------------------------------------- 1 | ../umd/bin/cli.js -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/JSONStream/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/* 2 | node_modules 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/JSONStream/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/JSONStream/node_modules/through/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | - "0.10" 6 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/assert/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/assert/.zuul.yml: -------------------------------------------------------------------------------- 1 | ui: mocha-qunit 2 | browsers: 3 | - name: chrome 4 | version: 27..latest 5 | - name: firefox 6 | version: latest 7 | - name: safari 8 | version: latest 9 | - name: ie 10 | version: 9..latest 11 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/assert/node_modules/util/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/assert/node_modules/util/support/isBuffer.js: -------------------------------------------------------------------------------- 1 | module.exports = function isBuffer(arg) { 2 | return arg instanceof Buffer; 3 | } 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-pack/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-pack/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/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/demo-component/node_modules/browserify/node_modules/browser-pack/example/foo.js: -------------------------------------------------------------------------------- 1 | module.exports = function (n) { return n * 111 } 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-pack/node_modules/JSONStream/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/* 2 | node_modules 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-pack/node_modules/JSONStream/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-pack/node_modules/JSONStream/node_modules/through/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-pack/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/demo-component/node_modules/browserify/node_modules/browser-pack/node_modules/combine-source-map/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-pack/node_modules/combine-source-map/node_modules/convert-source-map/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-pack/node_modules/combine-source-map/node_modules/inline-source-map/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - 0.10 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-pack/node_modules/combine-source-map/node_modules/source-map/.npmignore: -------------------------------------------------------------------------------- 1 | dist/* 2 | node_modules/* 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-pack/node_modules/combine-source-map/node_modules/source-map/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - "0.10" -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-pack/node_modules/combine-source-map/node_modules/source-map/build/test-suffix.js: -------------------------------------------------------------------------------- 1 | function run_test() { 2 | runSourceMapTests('{THIS_MODULE}', do_throw); 3 | } 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-pack/node_modules/through/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | - "0.10" 6 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | !test/fixtures/node_modules 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/empty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bclinkinbeard/angular-component-demo/5ed788b14becc11818192667616ac0cd25ee879b/node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/empty.js -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/example/builtin.js: -------------------------------------------------------------------------------- 1 | var resolve = require('../'); 2 | resolve('fs', null, function(err, path) { 3 | console.log(path); 4 | }); 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/example/custom.js: -------------------------------------------------------------------------------- 1 | var resolve = require('../'); 2 | var parent = { filename: __dirname + '/custom/file.js' }; 3 | resolve('./main.js', parent, function(err, path) { 4 | console.log(path); 5 | }); 6 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/example/custom/custom.js: -------------------------------------------------------------------------------- 1 | console.log('browser version'); 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/example/custom/main.js: -------------------------------------------------------------------------------- 1 | console.log('server version'); 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/example/custom/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "custom", 3 | "version": "0.0.0", 4 | "browser": { 5 | "./main.js": "custom.js" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/example/resolve.js: -------------------------------------------------------------------------------- 1 | var resolve = require('../'); 2 | resolve('../', { filename: __filename }, function(err, path) { 3 | console.log(path); 4 | }); 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/example/skip.js: -------------------------------------------------------------------------------- 1 | var resolve = require('../'); 2 | var parent = { filename: __dirname + '/skip/main.js' }; 3 | resolve('tar', parent, function(err, path) { 4 | console.log(path); 5 | }); 6 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/example/skip/main.js: -------------------------------------------------------------------------------- 1 | var tar = require('tar'); 2 | 3 | exports.add = function (a, b) { 4 | return a + b; 5 | }; 6 | 7 | exports.parse = function () { 8 | return tar.Parse(); 9 | }; 10 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/example/skip/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "skip", 3 | "version": "0.0.0", 4 | "browser": { 5 | "tar": false 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/test/fixtures-coffee/foo.coffee: -------------------------------------------------------------------------------- 1 | // blank file 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/test/fixtures/foo.js: -------------------------------------------------------------------------------- 1 | // blank file 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/test/fixtures/node_modules/false/fake.js: -------------------------------------------------------------------------------- 1 | module.exports = 'fake'; 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/test/fixtures/node_modules/false/node_modules/ignore-me/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'failure'; 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/test/fixtures/node_modules/false/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "./main.js", 3 | "browser": { 4 | "ignore-me": false, 5 | "./fake.js": false 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/test/fixtures/node_modules/module-a/index.js: -------------------------------------------------------------------------------- 1 | // dummy 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/test/fixtures/node_modules/module-b/main.js: -------------------------------------------------------------------------------- 1 | // entry 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/test/fixtures/node_modules/module-b/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "./main.js" 3 | } 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/test/fixtures/node_modules/module-c/bar.js: -------------------------------------------------------------------------------- 1 | // required by browser.js only 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/test/fixtures/node_modules/module-c/browser.js: -------------------------------------------------------------------------------- 1 | // browser entry file 2 | require('./bar'); 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/test/fixtures/node_modules/module-c/main.js: -------------------------------------------------------------------------------- 1 | // entry 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/test/fixtures/node_modules/module-c/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "./main.js", 3 | "browser": "./browser.js" 4 | } 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/test/fixtures/node_modules/module-d/browser.js: -------------------------------------------------------------------------------- 1 | // browser entry file 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/test/fixtures/node_modules/module-d/main.js: -------------------------------------------------------------------------------- 1 | // entry 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/test/fixtures/node_modules/module-d/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "./main.js", 3 | "browser": { 4 | "./main.js": "./browser.js" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/test/fixtures/node_modules/module-e/browser.js: -------------------------------------------------------------------------------- 1 | // browser entry file 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/test/fixtures/node_modules/module-e/foo.js: -------------------------------------------------------------------------------- 1 | // won't be used 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/test/fixtures/node_modules/module-e/main.js: -------------------------------------------------------------------------------- 1 | // entry 2 | require('./foo'); 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/test/fixtures/node_modules/module-e/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "./main.js", 3 | "browser": { 4 | "./foo.js": "./browser.js" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/test/fixtures/node_modules/module-f/lib/browser.js: -------------------------------------------------------------------------------- 1 | // browser entry file 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/test/fixtures/node_modules/module-f/lib/foo.js: -------------------------------------------------------------------------------- 1 | // won't be used 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/test/fixtures/node_modules/module-f/lib/main.js: -------------------------------------------------------------------------------- 1 | // entry 2 | require('./foo'); 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/test/fixtures/node_modules/module-f/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "./lib/main.js", 3 | "browser": { 4 | "./lib/foo.js": "./lib/browser.js" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/test/fixtures/node_modules/module-g/foobar-browser.js: -------------------------------------------------------------------------------- 1 | // foobar browser 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/test/fixtures/node_modules/module-g/index.js: -------------------------------------------------------------------------------- 1 | require('foobar'); 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/test/fixtures/node_modules/module-g/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "./index.js", 3 | "browser": { 4 | "foobar": "./foobar-browser.js" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/test/fixtures/node_modules/module-h/index.js: -------------------------------------------------------------------------------- 1 | require('foobar'); 2 | require('querystring'); 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/test/fixtures/node_modules/module-h/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "./index.js", 3 | "browser": { 4 | "foobar": "module-b", 5 | "querystring": "module-c" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/test/fixtures/node_modules/module-i/index.js: -------------------------------------------------------------------------------- 1 | require('foobar'); 2 | require('querystring'); 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/test/fixtures/node_modules/module-j/index.js: -------------------------------------------------------------------------------- 1 | require('foobar'); 2 | require('querystring'); 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/test/fixtures/node_modules/module-k/browser.js: -------------------------------------------------------------------------------- 1 | // browser entry file 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/test/fixtures/node_modules/module-k/index.js: -------------------------------------------------------------------------------- 1 | // node empty file 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/test/fixtures/node_modules/module-k/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "index.js", 3 | "browser": { 4 | "./index.js": "./browser.js" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/test/fixtures/node_modules/override-engine-shim/index.js: -------------------------------------------------------------------------------- 1 | var URL = require("url"); 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/test/fixtures/node_modules/override-engine-shim/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "./index.js", 3 | "browser": { 4 | "url": "./url-browser.js" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/test/fixtures/node_modules/override-engine-shim/url-browser.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browser-resolve/test/mocha.opts: -------------------------------------------------------------------------------- 1 | --ui qunit 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browserify-zlib/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browserify-zlib/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browserify-zlib/test/fixtures/empty.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browserify-zlib/test/fixtures/person.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bclinkinbeard/angular-component-demo/5ed788b14becc11818192667616ac0cd25ee879b/node_modules/demo-component/node_modules/browserify/node_modules/browserify-zlib/test/fixtures/person.jpg -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/browserify-zlib/test/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "browserify": { 3 | "transform": [ 4 | "brfs" 5 | ] 6 | } 7 | } -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/buffer/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | - "0.11" -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/buffer/bundle.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ./node_modules/.bin/browserify --no-detect-globals -r ./ > bundle.js 4 | echo ';module.exports=require("./").Buffer;' >> bundle.js 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/buffer/node_modules/base64-js/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | - "0.11" -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/buffer/node_modules/ieee754/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | - "0.11" -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/buffer/perf/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bclinkinbeard/angular-component-demo/5ed788b14becc11818192667616ac0cd25ee879b/node_modules/demo-component/node_modules/browserify/node_modules/buffer/perf/bundle.js -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/buffer/perf/comparison/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/buffer/perf/solo/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/commondir/example/base.js: -------------------------------------------------------------------------------- 1 | var commondir = require('commondir'); 2 | var dir = commondir('/foo/bar', [ '../baz', '../../foo/quux', './bizzy' ]) 3 | console.log(dir); 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/commondir/example/dir.js: -------------------------------------------------------------------------------- 1 | var commondir = require('commondir'); 2 | var dir = commondir([ '/x/y/z', '/x/y', '/x/y/w/q' ]) 3 | console.log(dir); 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/concat-stream/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/concat-stream/node_modules/readable-stream/.npmignore: -------------------------------------------------------------------------------- 1 | build/ 2 | test/ 3 | examples/ 4 | fs.js 5 | zlib.js -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/concat-stream/node_modules/readable-stream/duplex.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_duplex.js") 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/concat-stream/node_modules/readable-stream/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/demo-component/node_modules/browserify/node_modules/concat-stream/node_modules/readable-stream/node_modules/isarray/index.js: -------------------------------------------------------------------------------- 1 | module.exports = Array.isArray || function (arr) { 2 | return Object.prototype.toString.call(arr) == '[object Array]'; 3 | }; 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/concat-stream/node_modules/readable-stream/node_modules/string_decoder/.npmignore: -------------------------------------------------------------------------------- 1 | build 2 | test 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/concat-stream/node_modules/readable-stream/passthrough.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_passthrough.js") 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/concat-stream/node_modules/readable-stream/transform.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_transform.js") 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/concat-stream/node_modules/readable-stream/writable.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_writable.js") 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/concat-stream/node_modules/typedarray/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/concat-stream/node_modules/typedarray/example/tarray.js: -------------------------------------------------------------------------------- 1 | var Uint8Array = require('../').Uint8Array; 2 | var ua = new Uint8Array(5); 3 | ua[1] = 256 + 55; 4 | console.log(ua[1]); 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/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/demo-component/node_modules/browserify/node_modules/console-browserify/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - 0.9 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/constants-browserify/build.sh: -------------------------------------------------------------------------------- 1 | node -pe 'JSON.stringify(require("constants"), null, " ")' > constants.json 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/crypto-browserify/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/crypto-browserify/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - "0.10" 5 | 6 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/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/demo-component/node_modules/browserify/node_modules/crypto-browserify/test/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "browserify": { 3 | "transform": [ 4 | "brfs" 5 | ] 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/crypto-browserify/test/vectors/byte0001.dat: -------------------------------------------------------------------------------- 1 | $ -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/crypto-browserify/test/vectors/byte0002.dat: -------------------------------------------------------------------------------- 1 | p� -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/crypto-browserify/test/vectors/byte0003.dat: -------------------------------------------------------------------------------- 1 | � -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/deep-equal/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.4 4 | - 0.6 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/defined/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/defined/example/defined.js: -------------------------------------------------------------------------------- 1 | var defined = require('../'); 2 | var opts = { y : false, w : 4 }; 3 | var x = defined(opts.x, opts.y, opts.w, 8); 4 | console.log(x); 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/defined/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function () { 2 | for (var i = 0; i < arguments.length; i++) { 3 | if (arguments[i] !== undefined) return arguments[i]; 4 | } 5 | }; 6 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/deps-sort/node_modules/JSONStream/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/* 2 | node_modules 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/deps-sort/node_modules/JSONStream/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/deps-sort/node_modules/JSONStream/node_modules/through/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/deps-sort/node_modules/minimist/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/deps-sort/node_modules/minimist/example/parse.js: -------------------------------------------------------------------------------- 1 | var argv = require('../')(process.argv.slice(2)); 2 | console.dir(argv); 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/deps-sort/node_modules/through/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | - "0.10" 6 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/derequire/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | ~* 4 | coverage -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/derequire/node_modules/.bin/esparse: -------------------------------------------------------------------------------- 1 | ../esprima-fb/bin/esparse.js -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/derequire/node_modules/.bin/esvalidate: -------------------------------------------------------------------------------- 1 | ../esprima-fb/bin/esvalidate.js -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/derequire/node_modules/esprima-fb/.npmignore: -------------------------------------------------------------------------------- 1 | .git 2 | .travis.yml 3 | /node_modules/ 4 | /assets/ 5 | /coverage/ 6 | /demo/ 7 | /test/3rdparty 8 | /tools/ 9 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/derequire/node_modules/esrefactor/node_modules/.bin/esparse: -------------------------------------------------------------------------------- 1 | ../esprima/bin/esparse.js -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/derequire/node_modules/esrefactor/node_modules/.bin/esvalidate: -------------------------------------------------------------------------------- 1 | ../esprima/bin/esvalidate.js -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/derequire/node_modules/esrefactor/test/data/arguments1.js: -------------------------------------------------------------------------------- 1 | [1,4,2,3,-8].filter(function(i) { // declaration:i 2 | var max = 3; 3 | 4 | function other(i) { i + 2; } 5 | 6 | return i < max // cursor:i reference:i 7 | }); 8 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/derequire/node_modules/esrefactor/test/data/arguments2.js: -------------------------------------------------------------------------------- 1 | function test (xx, yy) {} // cursor:xx declaration:xx 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/derequire/node_modules/esrefactor/test/data/arguments3.js: -------------------------------------------------------------------------------- 1 | function test(xx, yy, zz) {} // cursor:yy declaration:yy 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/derequire/node_modules/esrefactor/test/data/arguments4.js: -------------------------------------------------------------------------------- 1 | list.map(function(i, j) { // declaration:j 2 | return i * j // cursor:j reference:j 3 | }); 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/derequire/node_modules/esrefactor/test/data/error_empty.js: -------------------------------------------------------------------------------- 1 | // exception: Unable to identify anything without a syntax tree 2 | context.identify(0) 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/derequire/node_modules/esrefactor/test/data/error_invalid_range.js: -------------------------------------------------------------------------------- 1 | // exception: esrefactor.Context only accepts a syntax tree with range information 2 | context.setCode({ type: 'Program', range: [1, 2, 3]}); 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/derequire/node_modules/esrefactor/test/data/error_nocode.js: -------------------------------------------------------------------------------- 1 | // exception:Unable to rename without the original source 2 | context.rename({ type: 'Program' }, '$'); 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/derequire/node_modules/esrefactor/test/data/error_scope_manager.js: -------------------------------------------------------------------------------- 1 | // exception: Cannot read property 'type' of null 2 | context.setCode({ type: 'RandomInvalidStuff' }); 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/derequire/node_modules/esrefactor/test/data/function_declaration.js: -------------------------------------------------------------------------------- 1 | test() // cursor:test reference:test 2 | 3 | function test() { return x + y } // declaration:test 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/derequire/node_modules/esrefactor/test/data/function_expression.js: -------------------------------------------------------------------------------- 1 | test() // cursor:test reference:test 2 | 3 | var test = function() { return x + y } // declaration:test reference:test 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/derequire/node_modules/esrefactor/test/data/global_declaration.js: -------------------------------------------------------------------------------- 1 | var answer; // declaration:answer 2 | 3 | answer = 42; // cursor:answer reference:answer 4 | 5 | console.log('The answer is', answer); // reference:answer 6 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/derequire/node_modules/esrefactor/test/data/global_init.js: -------------------------------------------------------------------------------- 1 | var answer = 42; // declaration:answer reference:answer 2 | 3 | ++answer; // cursor:answer reference:answer 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/derequire/node_modules/esrefactor/test/data/global_leak.js: -------------------------------------------------------------------------------- 1 | answer = 42; // cursor:answer reference:answer 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/derequire/node_modules/esrefactor/test/data/global_scope.js: -------------------------------------------------------------------------------- 1 | var test; // declaration:test 2 | function f() { 3 | var s = test / 2; // reference:test 4 | return test * s; // cursor:test reference:test 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/derequire/node_modules/esrefactor/test/data/nested_functions.js: -------------------------------------------------------------------------------- 1 | function x() { 2 | function y() {} // declaration:y 3 | return y; // cursor:y reference:y 4 | } 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/derequire/node_modules/esrefactor/test/data/typo.js: -------------------------------------------------------------------------------- 1 | function test() {} 2 | 3 | tst(x, y, z); // cursor:tst reference:tst 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/derequire/node_modules/esrefactor/test/data/unused_declaration.js: -------------------------------------------------------------------------------- 1 | function test(x, y) { 2 | return x + y 3 | var unused; // cursor:unused declaration:unused 4 | } 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/derequire/test/cjs-lazy.js: -------------------------------------------------------------------------------- 1 | (function (require) { 2 | var jQuery; 3 | if (!jQuery && typeof require === 'function') { 4 | jQuery = something('jquery'); 5 | } 6 | })() 7 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/derequire/test/cjs-smartass.dereq.js: -------------------------------------------------------------------------------- 1 | (function (_dereq_) { 2 | var jQuery; 3 | if (!jQuery && typeof _dereq_ === 'function') { 4 | jQuery = _dereq_('jquery'); 5 | } 6 | })() 7 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/derequire/test/cjs-smartass.js: -------------------------------------------------------------------------------- 1 | (function (require) { 2 | var jQuery; 3 | if (!jQuery && typeof require === 'function') { 4 | jQuery = require('jquery'); 5 | } 6 | })() 7 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/duplexer/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | *.err -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/duplexer/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.11" 4 | - "0.10" 5 | - "0.8" 6 | - "0.6" 7 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/events/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/glob/.npmignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | test/a/ 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/glob/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/glob/node_modules/minimatch/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/http-browserify/example/get/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | xhr 4 | 5 | 6 |
7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/http-browserify/example/post/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | xhr 4 | 5 | 6 |
7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/http-browserify/node_modules/Base64/.npmignore: -------------------------------------------------------------------------------- 1 | /coverage/ 2 | /node_modules/ 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/http-browserify/node_modules/Base64/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | - "0.11" 6 | install: make setup 7 | script: make test 8 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/inherits/inherits.js: -------------------------------------------------------------------------------- 1 | module.exports = require('util').inherits 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/insert-module-globals/.npmignore: -------------------------------------------------------------------------------- 1 | bench/jquery.js 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/insert-module-globals/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/insert-module-globals/bench/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | time module-deps bench/jquery.js | bin/cmd.js >/dev/null 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/insert-module-globals/example/files/foo/index.js: -------------------------------------------------------------------------------- 1 | process.nextTick(function () { 2 | console.log('in foo/index.js: ' + JSON.stringify({ 3 | __filename: __filename, 4 | __dirname: __dirname 5 | })); 6 | }); 7 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/insert-module-globals/example/files/main.js: -------------------------------------------------------------------------------- 1 | console.log('in main.js: ' + JSON.stringify({ 2 | __filename: __filename, 3 | __dirname: __dirname 4 | })); 5 | 6 | require('./foo'); 7 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/insert-module-globals/node_modules/lexical-scope/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - 0.10 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/insert-module-globals/node_modules/lexical-scope/example/detect.js: -------------------------------------------------------------------------------- 1 | var detect = require('../'); 2 | var fs = require('fs'); 3 | var src = fs.readFileSync(__dirname + '/src.js'); 4 | 5 | var scope = detect(src); 6 | console.dir(scope); 7 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/insert-module-globals/node_modules/lexical-scope/example/mine.js: -------------------------------------------------------------------------------- 1 | var detect = require('../mine.js'); 2 | var fs = require('fs'); 3 | var src = fs.readFileSync(__dirname + '/src.js'); 4 | 5 | var scope = detect(src); 6 | console.dir(scope); 7 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/insert-module-globals/node_modules/lexical-scope/node_modules/astw/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - 0.9 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/insert-module-globals/node_modules/lexical-scope/node_modules/astw/node_modules/.bin/esparse: -------------------------------------------------------------------------------- 1 | ../esprima-fb/bin/esparse.js -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/insert-module-globals/node_modules/lexical-scope/node_modules/astw/node_modules/.bin/esvalidate: -------------------------------------------------------------------------------- 1 | ../esprima-fb/bin/esvalidate.js -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/insert-module-globals/node_modules/lexical-scope/node_modules/astw/node_modules/esprima-fb/.npmignore: -------------------------------------------------------------------------------- 1 | .git 2 | .travis.yml 3 | /node_modules/ 4 | /assets/ 5 | /coverage/ 6 | /demo/ 7 | /test/3rdparty 8 | /tools/ 9 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/insert-module-globals/node_modules/lexical-scope/test/files/argument.js: -------------------------------------------------------------------------------- 1 | function foo () { 2 | var a; 3 | return function (c) { 4 | a = c; 5 | }; 6 | } 7 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/insert-module-globals/node_modules/lexical-scope/test/files/assign_implicit.js: -------------------------------------------------------------------------------- 1 | var foo; 2 | foo = bar; 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/insert-module-globals/node_modules/lexical-scope/test/files/multiple-exports.js: -------------------------------------------------------------------------------- 1 | exports.foo = function () { 2 | return bar; 3 | }; 4 | exports.bar = function (bar) { 5 | return bar; 6 | }; -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/insert-module-globals/node_modules/lexical-scope/test/files/named_arg.js: -------------------------------------------------------------------------------- 1 | function foo (x) { 2 | var a = x; 3 | return function (c) { 4 | a += c; 5 | }; 6 | } 7 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/insert-module-globals/node_modules/lexical-scope/test/files/obj.js: -------------------------------------------------------------------------------- 1 | module.exports = {foo: bar} 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/insert-module-globals/node_modules/lexical-scope/test/files/return_hash.js: -------------------------------------------------------------------------------- 1 | function foo() { 2 | return { 3 | bar: true 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/insert-module-globals/node_modules/lexical-scope/test/files/right_hand.js: -------------------------------------------------------------------------------- 1 | exports.filename = __filename; 2 | exports.dirname = __dirname; 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/insert-module-globals/node_modules/lexical-scope/test/files/try_catch.js: -------------------------------------------------------------------------------- 1 | function foo() { 2 | try { 3 | 4 | } catch (ex) { 5 | foo(ex) 6 | } 7 | } -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/insert-module-globals/node_modules/lexical-scope/test/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "browserify": { "transform": "brfs" } 3 | } 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/insert-module-globals/node_modules/process/index.js: -------------------------------------------------------------------------------- 1 | // for now just expose the builtin process global from node.js 2 | module.exports = global.process; 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/insert-module-globals/node_modules/through/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | - "0.10" 6 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/insert-module-globals/test/global/filename.js: -------------------------------------------------------------------------------- 1 | exports.filename = __filename; 2 | exports.dirname = __dirname; 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/insert-module-globals/test/global/main.js: -------------------------------------------------------------------------------- 1 | t.equal(a, 555); 2 | t.equal(a, global.a); 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/insert-module-globals/test/insert/buffer.js: -------------------------------------------------------------------------------- 1 | require('./foo/buf'); 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/insert-module-globals/test/insert/foo/buf.js: -------------------------------------------------------------------------------- 1 | process.nextTick(function () { 2 | t.equal(Buffer('abc').toString('base64'), 'YWJj'); 3 | t.equal(Buffer([98,99,100]).toString(), 'bcd'); 4 | }); 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/insert-module-globals/test/insert/foo/index.js: -------------------------------------------------------------------------------- 1 | process.nextTick(function () { 2 | t.equal(__filename, '/foo/index.js'); 3 | t.equal(__dirname, '/foo'); 4 | }); 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/insert-module-globals/test/insert/main.js: -------------------------------------------------------------------------------- 1 | t.equal(__filename, '/main.js'); 2 | t.equal(__dirname, '/'); 3 | 4 | require('./foo'); 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/insert-module-globals/test/return/foo/index.js: -------------------------------------------------------------------------------- 1 | process.nextTick(function () { 2 | t.equal(__filename, '/foo/index.js'); 3 | t.equal(__dirname, '/foo'); 4 | }); 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/insert-module-globals/test/return/main.js: -------------------------------------------------------------------------------- 1 | t.equal(__filename, '/main.js'); 2 | t.equal(__dirname, '/'); 3 | 4 | require('./foo'); 5 | 6 | return; 7 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/example/files/bar.js: -------------------------------------------------------------------------------- 1 | module.exports = function (n) { 2 | return n * 100; 3 | }; 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/example/files/foo.js: -------------------------------------------------------------------------------- 1 | var bar = require('./bar'); 2 | 3 | module.exports = function (n) { 4 | return n * 111 + bar(n); 5 | }; 6 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/example/files/main.js: -------------------------------------------------------------------------------- 1 | var foo = require('./foo'); 2 | console.log('main: ' + foo(5)); 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/example/files/xyz.js: -------------------------------------------------------------------------------- 1 | var foo = require('./foo'); 2 | console.log('xyz: ' + foo(6)); 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/node_modules/detective/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/node_modules/detective/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - 0.10 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/node_modules/detective/example/strings.js: -------------------------------------------------------------------------------- 1 | var detective = require('../'); 2 | var fs = require('fs'); 3 | 4 | var src = fs.readFileSync(__dirname + '/strings_src.js'); 5 | var requires = detective(src); 6 | console.dir(requires); 7 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/node_modules/detective/example/strings_src.js: -------------------------------------------------------------------------------- 1 | var a = require('a'); 2 | var b = require('b'); 3 | var c = require('c'); 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/node_modules/detective/node_modules/.bin/escodegen: -------------------------------------------------------------------------------- 1 | ../escodegen/bin/escodegen.js -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/node_modules/detective/node_modules/.bin/esgenerate: -------------------------------------------------------------------------------- 1 | ../escodegen/bin/esgenerate.js -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/node_modules/detective/node_modules/.bin/esparse: -------------------------------------------------------------------------------- 1 | ../esprima-fb/bin/esparse.js -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/node_modules/detective/node_modules/.bin/esvalidate: -------------------------------------------------------------------------------- 1 | ../esprima-fb/bin/esvalidate.js -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/.bin/esparse: -------------------------------------------------------------------------------- 1 | ../esprima/bin/esparse.js -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/.bin/esvalidate: -------------------------------------------------------------------------------- 1 | ../esprima/bin/esvalidate.js -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/esutils/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | - "0.11" 5 | 6 | matrix: 7 | allow_failures: 8 | - node_js: "0.11" 9 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/source-map/.npmignore: -------------------------------------------------------------------------------- 1 | dist/* 2 | node_modules/* 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/source-map/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - "0.10" -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/node_modules/detective/node_modules/escodegen/node_modules/source-map/build/test-suffix.js: -------------------------------------------------------------------------------- 1 | function run_test() { 2 | runSourceMapTests('{THIS_MODULE}', do_throw); 3 | } 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/node_modules/detective/node_modules/esprima-fb/.npmignore: -------------------------------------------------------------------------------- 1 | .git 2 | .travis.yml 3 | /node_modules/ 4 | /assets/ 5 | /coverage/ 6 | /demo/ 7 | /test/3rdparty 8 | /tools/ 9 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/node_modules/detective/test/files/both.js: -------------------------------------------------------------------------------- 1 | require('a'); 2 | require('b'); 3 | require('c'+x); 4 | var moo = require('d'+y).moo; 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/node_modules/detective/test/files/chained.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | require('c').hello().goodbye() 4 | require('b').hello() 5 | require('a') 6 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/node_modules/detective/test/files/generators.js: -------------------------------------------------------------------------------- 1 | var a = require('a'); 2 | 3 | function *gen() { 4 | yield require('b'); 5 | } -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/node_modules/detective/test/files/shebang.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | var a = require('a'); 4 | var b = require('b'); 5 | var c = require('c'); 6 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/node_modules/detective/test/files/sparse-array.js: -------------------------------------------------------------------------------- 1 | var o = [,,,,] 2 | 3 | require('./foo') 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/node_modules/detective/test/files/yield.js: -------------------------------------------------------------------------------- 1 | var a = require('a'); 2 | var b = yield require('c')(a); 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/node_modules/minimist/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/node_modules/minimist/example/parse.js: -------------------------------------------------------------------------------- 1 | var argv = require('../')(process.argv.slice(2)); 2 | console.dir(argv); 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/node_modules/through/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | - "0.10" 6 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/test/files/bar.js: -------------------------------------------------------------------------------- 1 | module.exports = function (n) { 2 | return n * 100; 3 | }; 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/test/files/foo.js: -------------------------------------------------------------------------------- 1 | var bar = require('./bar'); 2 | 3 | module.exports = function (n) { 4 | return n * 111 + bar(n); 5 | }; 6 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/test/files/main.js: -------------------------------------------------------------------------------- 1 | var foo = require('./foo'); 2 | console.log('main: ' + foo(5)); 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/test/files/pkg_filter/one.js: -------------------------------------------------------------------------------- 1 | module.exports = 1 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/test/files/pkg_filter/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "one.js" 3 | } 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/test/files/pkg_filter/test.js: -------------------------------------------------------------------------------- 1 | t.equal(require('./'), 2); 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/test/files/pkg_filter/two.js: -------------------------------------------------------------------------------- 1 | module.exports = 2 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/test/files/tr_2dep_module/f.js: -------------------------------------------------------------------------------- 1 | module.exports = function (x) { return x + BBB } 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/test/files/tr_2dep_module/node_modules/g/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function (x) { return x * GGG } 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/test/files/tr_2dep_module/node_modules/g/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "index.js", 3 | "browserify": { 4 | "transform": "insert-ggg" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/test/files/tr_2dep_module/node_modules/m/index.js: -------------------------------------------------------------------------------- 1 | var AAA = 200, BBB = 300; 2 | 3 | module.exports = function (x) { return AAA + BBB + MMM + x } 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/test/files/tr_2dep_module/node_modules/m/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "index.js", 3 | "browserify": { 4 | "transform": "insert-mmm" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/test/files/tr_global/main.js: -------------------------------------------------------------------------------- 1 | console.log(AAA + BBB + CCC + DDD + EEE + FFF); 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/test/files/tr_global/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "browserify": { 3 | "transform": [ "tr-a", "tr-b" ] 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/test/files/tr_module/f.js: -------------------------------------------------------------------------------- 1 | module.exports = function (x) { return x + BBB } 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/test/files/tr_module/index.js: -------------------------------------------------------------------------------- 1 | var through = require('through'); 2 | 3 | module.exports = function (file) { 4 | return through(function (buf) { 5 | this.queue(String(buf).replace(/XXX/g, '123')); 6 | }); 7 | }; 8 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/test/files/tr_module/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "browserify": { 3 | "transform": [ "./xxx.js" ] 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/test/files/tr_module/xxx.js: -------------------------------------------------------------------------------- 1 | var through = require('through'); 2 | 3 | module.exports = function (file) { 4 | return through(function (buf) { 5 | this.queue(String(buf).replace(/XXX/g, '123')); 6 | }); 7 | }; 8 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/test/files/tr_rel/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "browserify": { 3 | "transform": [ "./xxx.js" ] 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/test/files/tr_rel/subdir/main.js: -------------------------------------------------------------------------------- 1 | console.log(XXX * 3) 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/test/files/tr_rel/xxx.js: -------------------------------------------------------------------------------- 1 | var through = require('through'); 2 | 3 | module.exports = function (file) { 4 | return through(function (buf) { 5 | this.queue(String(buf).replace(/XXX/g, '111')); 6 | }); 7 | }; 8 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/test/files/tr_sh/f.js: -------------------------------------------------------------------------------- 1 | module.exports = function (x) { return x + BBB } 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/test/files/tr_sh/node_modules/g/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function (x) { return x * GGG } 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/test/files/tr_sh/node_modules/g/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "index.js", 3 | "browserify": { 4 | "transform": "./tr_g.js" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/test/files/tr_sh/node_modules/g/tr_g.js: -------------------------------------------------------------------------------- 1 | var through = require('through'); 2 | module.exports = function (file) { 3 | return through(function (buf) { 4 | this.queue(String(buf).replace(/GGG/g, '111')); 5 | }); 6 | }; 7 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/test/files/tr_sh/node_modules/m/index.js: -------------------------------------------------------------------------------- 1 | var AAA = 200, BBB = 300; 2 | 3 | module.exports = function (x) { return AAA + BBB + x } 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/test/files/tr_sh/tr_a.js: -------------------------------------------------------------------------------- 1 | var through = require('through'); 2 | module.exports = function (file) { 3 | return through(function (buf) { 4 | this.queue(String(buf).replace(/AAA/g, '5')); 5 | }); 6 | }; 7 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/test/files/tr_sh/tr_b.js: -------------------------------------------------------------------------------- 1 | var through = require('through'); 2 | module.exports = function (file) { 3 | return through(function (buf) { 4 | this.queue(String(buf).replace(/BBB/g, '50')); 5 | }); 6 | }; 7 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/test/files/tr_whole_package/f.js: -------------------------------------------------------------------------------- 1 | var calc = require('algo').calc; 2 | 3 | module.exports = function (x) { return calc(x); } 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/test/files/tr_whole_package/main.js: -------------------------------------------------------------------------------- 1 | var f = require('./f.js'); 2 | 3 | t.equal(f(14), 11, 'transformation scope'); 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/test/files/tr_whole_package/node_modules/algo/index.js: -------------------------------------------------------------------------------- 1 | var decrement = require('./lib/decrement'); 2 | 3 | exports.calc = function (x) { return decrement(x) - GGG - GGG } 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/test/files/tr_whole_package/node_modules/algo/lib/decrement.js: -------------------------------------------------------------------------------- 1 | module.exports = function (x) { return x - GGG } 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/test/files/tr_whole_package/node_modules/algo/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "index.js", 3 | "browserify": { 4 | "transform": "insert-ggg" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/test/files/unicode/bar.js: -------------------------------------------------------------------------------- 1 | module.exports = function (ñ) { 2 | return ñ * 100; 3 | }; 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/test/files/unicode/foo.js: -------------------------------------------------------------------------------- 1 | var é = require('./bar'); 2 | 3 | module.exports = function (ñ) { 4 | return ñ * 111 + é(n); 5 | }; 6 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/test/files/unicode/main.js: -------------------------------------------------------------------------------- 1 | var π = require('./foo'); 2 | console.log('main: ' + foo(5)); 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/test/files/xyz.js: -------------------------------------------------------------------------------- 1 | var foo = require('./foo'); 2 | console.log('xyz: ' + foo(6)); 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/test/tr_opts/main.js: -------------------------------------------------------------------------------- 1 | console.log(FFF * GGG); 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/module-deps/test/tr_opts/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "mdtr": [ 3 | [ "fff", { "x": 3 } ], 4 | [ "ggg", { "z": 111 } ] 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/os-browserify/.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 | npm-debug.log 15 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/os-browserify/README.md: -------------------------------------------------------------------------------- 1 | os-browserify 2 | ============= -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/os-browserify/main.js: -------------------------------------------------------------------------------- 1 | module.exports = require('os'); 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/parents/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/parents/example/dirname.js: -------------------------------------------------------------------------------- 1 | var parents = require('../'); 2 | var dirs = parents(__dirname); 3 | console.dir(dirs); 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/parents/example/win32.js: -------------------------------------------------------------------------------- 1 | var parents = require('../'); 2 | var dir = 'C:\\Program Files\\Maxis\\Sim City 2000\\cities'; 3 | 4 | var dirs = parents(dir, { platform : 'win32' }); 5 | console.dir(dirs); 6 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/path-browserify/readme.markdown: -------------------------------------------------------------------------------- 1 | # path-browserify 2 | 3 | the path module from node core for browsers 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/querystring-es3/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/querystring-es3/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.decode = exports.parse = require('./decode'); 4 | exports.encode = exports.stringify = require('./encode'); 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/querystring-es3/test/common-index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | require("test").run(require("./index")) -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/querystring-es3/test/tap-index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | require("retape")(require("./index")) -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/resolve/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/resolve/example/async.js: -------------------------------------------------------------------------------- 1 | var resolve = require('../'); 2 | resolve('tap', { basedir: __dirname }, function (err, res) { 3 | if (err) console.error(err) 4 | else console.log(res) 5 | }); 6 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/resolve/example/sync.js: -------------------------------------------------------------------------------- 1 | var resolve = require('../'); 2 | var res = resolve.sync('tap', { basedir: __dirname }); 3 | console.log(res); 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/resolve/index.js: -------------------------------------------------------------------------------- 1 | var core = require('./lib/core'); 2 | exports = module.exports = require('./lib/async'); 3 | exports.core = core; 4 | exports.isCore = function (x) { return core[x] }; 5 | exports.sync = require('./lib/sync'); 6 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/resolve/lib/core.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./core.json').reduce(function (acc, x) { 2 | acc[x] = true; 3 | return acc; 4 | }, {}); 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/resolve/test/node_path/x/aaa/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'A' 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/resolve/test/node_path/x/ccc/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'C' 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/resolve/test/node_path/y/bbb/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'B' 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/resolve/test/node_path/y/ccc/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'CY' 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/resolve/test/resolver/bar/node_modules/foo/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/resolve/test/resolver/baz/doom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bclinkinbeard/angular-component-demo/5ed788b14becc11818192667616ac0cd25ee879b/node_modules/demo-component/node_modules/browserify/node_modules/resolve/test/resolver/baz/doom.js -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/resolve/test/resolver/baz/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main" : "quux.js" 3 | } 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/resolve/test/resolver/baz/quux.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/resolve/test/resolver/biz/node_modules/garply/lib/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'hello garply'; 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/resolve/test/resolver/biz/node_modules/garply/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main" : "./lib" 3 | } 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/resolve/test/resolver/biz/node_modules/grux/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('tiv') * 100; 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/resolve/test/resolver/biz/node_modules/tiv/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 3; 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/resolve/test/resolver/cup.coffee: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/resolve/test/resolver/foo.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/resolve/test/resolver/incorrect_main/index.js: -------------------------------------------------------------------------------- 1 | // this is the actual main file 'index.js', not 'wrong.js' like the package.json would indicate 2 | module.exports = 1; 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/resolve/test/resolver/incorrect_main/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main" : "wrong.js" 3 | } 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/resolve/test/resolver/mug.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bclinkinbeard/angular-component-demo/5ed788b14becc11818192667616ac0cd25ee879b/node_modules/demo-component/node_modules/browserify/node_modules/resolve/test/resolver/mug.coffee -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/resolve/test/resolver/mug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bclinkinbeard/angular-component-demo/5ed788b14becc11818192667616ac0cd25ee879b/node_modules/demo-component/node_modules/browserify/node_modules/resolve/test/resolver/mug.js -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/resolve/test/resolver/other_path/root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bclinkinbeard/angular-component-demo/5ed788b14becc11818192667616ac0cd25ee879b/node_modules/demo-component/node_modules/browserify/node_modules/resolve/test/resolver/other_path/root.js -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/resolve/test/resolver/quux/foo/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/resolve/test/resolver/without_basedir/main.js: -------------------------------------------------------------------------------- 1 | resolve = require('../../../'); 2 | 3 | module.exports = function(t, cb) { 4 | resolve('mymodule', null, cb); 5 | } 6 | 7 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/resolve/test/resolver/without_basedir/node_modules/mymodule.js: -------------------------------------------------------------------------------- 1 | module.exports = "The tools we use have a profound (and devious!) influence on our thinking habits, and, therefore, on our thinking abilities.- E. Dijkstra" 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/shallow-copy/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/shallow-copy/example/object.js: -------------------------------------------------------------------------------- 1 | var copy = require('../'); 2 | 3 | var obj = { a: 3, b: 4, c: [5,6] }; 4 | var dup = copy(obj); 5 | dup.b *= 111; 6 | dup.c.push(7); 7 | 8 | console.log('original: ', obj); 9 | console.log('copy: ', dup); 10 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/shell-quote/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.4 4 | - 0.6 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/shell-quote/example/parse.js: -------------------------------------------------------------------------------- 1 | var parse = require('../').parse; 2 | var xs = parse('a "b c" \\$def \'it\\\'s great\''); 3 | console.dir(xs); 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/shell-quote/example/quote.js: -------------------------------------------------------------------------------- 1 | var quote = require('../').quote; 2 | var s = quote([ 'a', 'b c d', '$f', '"g"' ]); 3 | console.log(s); 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/stream-browserify/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/stream-browserify/node_modules/process/index.js: -------------------------------------------------------------------------------- 1 | // for now just expose the builtin process global from node.js 2 | module.exports = global.process; 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/stream-combiner/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | node_modules/* 3 | npm_debug.log 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/stream-combiner/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/string_decoder/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/string_decoder/build/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/subarg/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/subarg/example/show.js: -------------------------------------------------------------------------------- 1 | var subarg = require('../'); 2 | var argv = subarg(process.argv.slice(2)); 3 | console.log(argv); 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/subarg/node_modules/minimist/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/subarg/node_modules/minimist/example/parse.js: -------------------------------------------------------------------------------- 1 | var argv = require('../')(process.argv.slice(2)); 2 | console.dir(argv); 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/syntax-error/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/syntax-error/node_modules/.bin/esparse: -------------------------------------------------------------------------------- 1 | ../esprima-fb/bin/esparse.js -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/syntax-error/node_modules/.bin/esvalidate: -------------------------------------------------------------------------------- 1 | ../esprima-fb/bin/esvalidate.js -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/syntax-error/node_modules/esprima-fb/.npmignore: -------------------------------------------------------------------------------- 1 | .git 2 | .travis.yml 3 | /node_modules/ 4 | /assets/ 5 | /coverage/ 6 | /demo/ 7 | /test/3rdparty 8 | /tools/ 9 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/through2/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/through2/node_modules/readable-stream/.npmignore: -------------------------------------------------------------------------------- 1 | build/ 2 | test/ 3 | examples/ 4 | fs.js 5 | zlib.js -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/through2/node_modules/readable-stream/duplex.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_duplex.js") 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/through2/node_modules/readable-stream/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/demo-component/node_modules/browserify/node_modules/through2/node_modules/readable-stream/node_modules/isarray/index.js: -------------------------------------------------------------------------------- 1 | module.exports = Array.isArray || function (arr) { 2 | return Object.prototype.toString.call(arr) == '[object Array]'; 3 | }; 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/through2/node_modules/readable-stream/node_modules/string_decoder/.npmignore: -------------------------------------------------------------------------------- 1 | build 2 | test 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/through2/node_modules/readable-stream/passthrough.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_passthrough.js") 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/through2/node_modules/readable-stream/transform.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_transform.js") 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/through2/node_modules/readable-stream/writable.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_writable.js") 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/through2/node_modules/xtend/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/through2/node_modules/xtend/Makefile: -------------------------------------------------------------------------------- 1 | browser: 2 | node ./support/compile 3 | 4 | .PHONY: browser -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/through2/node_modules/xtend/has-keys.js: -------------------------------------------------------------------------------- 1 | module.exports = hasKeys 2 | 3 | function hasKeys(source) { 4 | return source !== null && 5 | (typeof source === "object" || 6 | typeof source === "function") 7 | } 8 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/through2/node_modules/xtend/node_modules/object-keys/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/through2/node_modules/xtend/node_modules/object-keys/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | - "0.8" 5 | - "0.6" 6 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/through2/node_modules/xtend/node_modules/object-keys/index.js: -------------------------------------------------------------------------------- 1 | module.exports = Object.keys || require('./shim'); 2 | 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/through2/node_modules/xtend/node_modules/object-keys/test/index.js: -------------------------------------------------------------------------------- 1 | 2 | require('./foreach'); 3 | require('./isArguments'); 4 | 5 | require('./shim'); 6 | 7 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/timers-browserify/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /node_modules 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/timers-browserify/example/enroll/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | browserify --debug -o js/browserify.js js/main.js 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/timers-browserify/example/enroll/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/timers-browserify/node_modules/process/index.js: -------------------------------------------------------------------------------- 1 | // for now just expose the builtin process global from node.js 2 | module.exports = global.process; 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/tty-browserify/readme.markdown: -------------------------------------------------------------------------------- 1 | # tty-browserify 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | examples 3 | .gitignore 4 | UMD.png 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/.bin/uglifyjs: -------------------------------------------------------------------------------- 1 | ../uglify-js/bin/uglifyjs -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/rfile/.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 | npm-debug.log 15 | 16 | node_modules 17 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/rfile/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/rfile/node_modules/callsite/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/rfile/node_modules/callsite/History.md: -------------------------------------------------------------------------------- 1 | 2 | 1.0.0 / 2013-01-24 3 | ================== 4 | 5 | * remove lame magical getters 6 | 7 | 0.0.1 / 2010-01-03 8 | ================== 9 | 10 | * Initial release 11 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/rfile/node_modules/callsite/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha \ 4 | --require should 5 | 6 | .PHONY: test -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/rfile/node_modules/resolve/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/rfile/node_modules/resolve/example/async.js: -------------------------------------------------------------------------------- 1 | var resolve = require('../'); 2 | resolve('tap', { basedir: __dirname }, function (err, res) { 3 | if (err) console.error(err) 4 | else console.log(res) 5 | }); 6 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/rfile/node_modules/resolve/example/sync.js: -------------------------------------------------------------------------------- 1 | var resolve = require('../'); 2 | var res = resolve.sync('tap', { basedir: __dirname }); 3 | console.log(res); 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/rfile/node_modules/resolve/lib/core.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./core.json').reduce(function (acc, x) { 2 | acc[x] = true; 3 | return acc; 4 | }, {}); 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/rfile/node_modules/resolve/test/resolver/bar/node_modules/foo/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/rfile/node_modules/resolve/test/resolver/baz/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main" : "quux.js" 3 | } 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/rfile/node_modules/resolve/test/resolver/baz/quux.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/rfile/node_modules/resolve/test/resolver/biz/node_modules/grux/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('tiv') * 100; 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/rfile/node_modules/resolve/test/resolver/biz/node_modules/tiv/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 3; 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/rfile/node_modules/resolve/test/resolver/cup.coffee: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/rfile/node_modules/resolve/test/resolver/foo.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/ruglify/.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 | npm-debug.log 15 | 16 | node_modules 17 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/ruglify/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | - "0.8" -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/ruglify/node_modules/.bin/uglifyjs: -------------------------------------------------------------------------------- 1 | ../uglify-js/bin/uglifyjs -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/ruglify/node_modules/uglify-js/.npmignore: -------------------------------------------------------------------------------- 1 | tmp/ 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/ruglify/node_modules/uglify-js/node_modules/optimist/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/ruglify/node_modules/uglify-js/node_modules/optimist/example/boolean_single.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('optimist') 3 | .boolean('v') 4 | .argv 5 | ; 6 | console.dir(argv.v); 7 | console.dir(argv._); 8 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/ruglify/node_modules/uglify-js/node_modules/optimist/example/nonopt.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('optimist').argv; 3 | console.log('(%d,%d)', argv.x, argv.y); 4 | console.log(argv._); 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/ruglify/node_modules/uglify-js/node_modules/optimist/example/reflect.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | console.dir(require('optimist').argv); 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/ruglify/node_modules/uglify-js/node_modules/optimist/example/short.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('optimist').argv; 3 | console.log('(%d,%d)', argv.x, argv.y); 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/ruglify/node_modules/uglify-js/node_modules/optimist/node_modules/wordwrap/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/ruglify/node_modules/uglify-js/node_modules/optimist/node_modules/wordwrap/example/meat.js: -------------------------------------------------------------------------------- 1 | var wrap = require('wordwrap')(15); 2 | 3 | console.log(wrap('You and your whole family are made out of meat.')); 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/ruglify/node_modules/uglify-js/node_modules/optimist/test/_/argv.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | console.log(JSON.stringify(process.argv)); 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/ruglify/node_modules/uglify-js/node_modules/optimist/test/_/bin.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('../../index').argv 3 | console.log(JSON.stringify(argv._)); 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/ruglify/node_modules/uglify-js/node_modules/source-map/.npmignore: -------------------------------------------------------------------------------- 1 | dist/* 2 | node_modules/* 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/ruglify/node_modules/uglify-js/node_modules/source-map/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - "0.10" -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/ruglify/node_modules/uglify-js/node_modules/source-map/build/test-suffix.js: -------------------------------------------------------------------------------- 1 | function run_test() { 2 | runSourceMapTests('{THIS_MODULE}', do_throw); 3 | } 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/through/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | - "0.10" 6 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/uglify-js/.npmignore: -------------------------------------------------------------------------------- 1 | tmp/ 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/uglify-js/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.4" 4 | - "0.8" 5 | - "0.10" 6 | - "0.11" 7 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/uglify-js/node_modules/optimist/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/uglify-js/node_modules/optimist/example/boolean_single.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('optimist') 3 | .boolean('v') 4 | .argv 5 | ; 6 | console.dir(argv.v); 7 | console.dir(argv._); 8 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/uglify-js/node_modules/optimist/example/default_hash.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | var argv = require('optimist') 4 | .default({ x : 10, y : 10 }) 5 | .argv 6 | ; 7 | 8 | console.log(argv.x + argv.y); 9 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/uglify-js/node_modules/optimist/example/default_singles.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('optimist') 3 | .default('x', 10) 4 | .default('y', 10) 5 | .argv 6 | ; 7 | console.log(argv.x + argv.y); 8 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/uglify-js/node_modules/optimist/example/nonopt.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('optimist').argv; 3 | console.log('(%d,%d)', argv.x, argv.y); 4 | console.log(argv._); 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/uglify-js/node_modules/optimist/example/reflect.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | console.dir(require('optimist').argv); 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/uglify-js/node_modules/optimist/example/short.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('optimist').argv; 3 | console.log('(%d,%d)', argv.x, argv.y); 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/uglify-js/node_modules/optimist/node_modules/wordwrap/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/uglify-js/node_modules/optimist/node_modules/wordwrap/example/meat.js: -------------------------------------------------------------------------------- 1 | var wrap = require('wordwrap')(15); 2 | 3 | console.log(wrap('You and your whole family are made out of meat.')); 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/uglify-js/node_modules/optimist/test/_/argv.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | console.log(JSON.stringify(process.argv)); 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/uglify-js/node_modules/optimist/test/_/bin.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('../../index').argv 3 | console.log(JSON.stringify(argv._)); 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/uglify-js/node_modules/source-map/.npmignore: -------------------------------------------------------------------------------- 1 | dist/* 2 | node_modules/* 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/uglify-js/node_modules/source-map/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - "0.10" -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/uglify-js/node_modules/source-map/build/test-suffix.js: -------------------------------------------------------------------------------- 1 | function run_test() { 2 | runSourceMapTests('{THIS_MODULE}', do_throw); 3 | } 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/umd/node_modules/uglify-js/node_modules/uglify-to-browserify/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/url/.npmignore: -------------------------------------------------------------------------------- 1 | test-url.js 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/util/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/util/.zuul.yml: -------------------------------------------------------------------------------- 1 | ui: mocha-qunit 2 | browsers: 3 | - name: chrome 4 | version: 27..latest 5 | - name: firefox 6 | version: latest 7 | - name: safari 8 | version: latest 9 | - name: ie 10 | version: 9..latest 11 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/util/support/isBuffer.js: -------------------------------------------------------------------------------- 1 | module.exports = function isBuffer(arg) { 2 | return arg instanceof Buffer; 3 | } 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/vm-browserify/example/run/entry.js: -------------------------------------------------------------------------------- 1 | var vm = require('vm'); 2 | 3 | $(function () { 4 | var res = vm.runInNewContext('a + 5', { a : 100 }); 5 | $('#res').text(res); 6 | }); 7 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/vm-browserify/node_modules/indexof/.npmignore: -------------------------------------------------------------------------------- 1 | components 2 | build 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/node_modules/vm-browserify/node_modules/indexof/Makefile: -------------------------------------------------------------------------------- 1 | 2 | build: components index.js 3 | @component build 4 | 5 | components: 6 | @Component install 7 | 8 | clean: 9 | rm -fr build components template.js 10 | 11 | .PHONY: clean 12 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/bom/hello.js: -------------------------------------------------------------------------------- 1 | console.log('hello') 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/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/demo-component/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/demo-component/node_modules/browserify/test/bundle_external/robot.js: -------------------------------------------------------------------------------- 1 | module.exports = function (n) { return n + 1 }; 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/catch/main.js: -------------------------------------------------------------------------------- 1 | require('./no_such_file'); 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/circular/a.js: -------------------------------------------------------------------------------- 1 | exports.a = 1; 2 | exports.b = require('./b'); 3 | exports.a = 5; 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/circular/b.js: -------------------------------------------------------------------------------- 1 | module.exports = 2 + require('./a').a 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/circular/main.js: -------------------------------------------------------------------------------- 1 | t.deepEqual(require('./a.js'), { a: 5, b: 3 }); 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/coffee_bin/main.coffee: -------------------------------------------------------------------------------- 1 | console.log "hello world!" 2 | require './x.coffee' 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/coffee_bin/x.coffee: -------------------------------------------------------------------------------- 1 | console.log "from x!" 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/coffeeify/main.coffee: -------------------------------------------------------------------------------- 1 | process.nextTick -> 2 | console.log 'eyo' 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/comment/main.js: -------------------------------------------------------------------------------- 1 | ex(1234) 2 | // test -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/cycle/mod1/a.js: -------------------------------------------------------------------------------- 1 | require('./b') -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/cycle/mod1/b.js: -------------------------------------------------------------------------------- 1 | require('./a') -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/cycle/mod2/a.js: -------------------------------------------------------------------------------- 1 | require('./b') -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/cycle/mod2/b.js: -------------------------------------------------------------------------------- 1 | require('./a') -------------------------------------------------------------------------------- /node_modules/demo-component/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/demo-component/node_modules/browserify/test/double_buffer/explicit.js: -------------------------------------------------------------------------------- 1 | module.exports = require('buffer').Buffer 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/double_buffer/implicit.js: -------------------------------------------------------------------------------- 1 | module.exports = Buffer 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/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/demo-component/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/demo-component/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/demo-component/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/demo-component/node_modules/browserify/test/entry/main.js: -------------------------------------------------------------------------------- 1 | done(require('./one'), require('./two')); -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/entry/one.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/entry/two.js: -------------------------------------------------------------------------------- 1 | module.exports = 2; 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/entry_exec/fail.js: -------------------------------------------------------------------------------- 1 | t.fail('only entry files should get executed right away'); 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/entry_exec/main.js: -------------------------------------------------------------------------------- 1 | t.ok(true); 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/error_code/src.js: -------------------------------------------------------------------------------- 1 | var x = { 2 | var y = 6; 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/export/entry.js: -------------------------------------------------------------------------------- 1 | // nop 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/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/demo-component/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/demo-component/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/demo-component/node_modules/browserify/test/fake/fake_fs.js: -------------------------------------------------------------------------------- 1 | exports.party = function () { return 'PaRtY!1!1!' }; 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/fake/main.js: -------------------------------------------------------------------------------- 1 | var fs = require('fs'); 2 | t.equal(fs.party(), 'PaRtY!1!1!'); 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/field/miss.js: -------------------------------------------------------------------------------- 1 | module.exports = require('z-miss') 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/field/node_modules/z-miss/browser.js: -------------------------------------------------------------------------------- 1 | module.exports = 'browser'; 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/field/node_modules/z-miss/main.js: -------------------------------------------------------------------------------- 1 | module.exports = '!browser'; 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/field/node_modules/z-miss/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main" : "main.js", 3 | "browserify" : {} 4 | } 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/field/node_modules/z-object/browser.js: -------------------------------------------------------------------------------- 1 | module.exports = 'browser'; 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/field/node_modules/z-object/main.js: -------------------------------------------------------------------------------- 1 | module.exports = '!browser'; 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/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/demo-component/node_modules/browserify/test/field/node_modules/z-string/browser.js: -------------------------------------------------------------------------------- 1 | module.exports = 'browser'; 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/field/node_modules/z-string/main.js: -------------------------------------------------------------------------------- 1 | module.exports = '!browser'; 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/field/node_modules/z-string/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main" : "main.js", 3 | "browserify" : "browser.js" 4 | } 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/field/node_modules/z-sub/browser/a.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./b'); 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/field/node_modules/z-sub/browser/b.js: -------------------------------------------------------------------------------- 1 | module.exports = 'browser'; 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/field/node_modules/z-sub/main.js: -------------------------------------------------------------------------------- 1 | module.exports = '!browser'; 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/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/demo-component/node_modules/browserify/test/field/object.js: -------------------------------------------------------------------------------- 1 | module.exports = require('z-object') 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/field/string.js: -------------------------------------------------------------------------------- 1 | module.exports = require('z-string') 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/field/sub.js: -------------------------------------------------------------------------------- 1 | module.exports = require('z-sub') 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/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/demo-component/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/demo-component/node_modules/browserify/test/glob/lib/z.js: -------------------------------------------------------------------------------- 1 | console.log('z'); 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/glob/vendor/x.js: -------------------------------------------------------------------------------- 1 | console.log('x'); 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/glob/vendor/y.js: -------------------------------------------------------------------------------- 1 | console.log('y'); 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/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/demo-component/node_modules/browserify/test/global/filename.js: -------------------------------------------------------------------------------- 1 | exports.filename = __filename; 2 | exports.dirname = __dirname; 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/global/main.js: -------------------------------------------------------------------------------- 1 | t.equal(a, 555); 2 | t.equal(a, global.a); 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/global/tick.js: -------------------------------------------------------------------------------- 1 | process.nextTick(function () { 2 | t.ok(true); 3 | }); 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/hash/foo/other.js: -------------------------------------------------------------------------------- 1 | module.exports = 5; 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/hash/foo/two.js: -------------------------------------------------------------------------------- 1 | // FILE CONTENTS 2 | module.exports = 111 * require('./other.js'); 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/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/demo-component/node_modules/browserify/test/hash/one.js: -------------------------------------------------------------------------------- 1 | // FILE CONTENTS 2 | module.exports = 111 * require('./other.js'); 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/hash/other.js: -------------------------------------------------------------------------------- 1 | module.exports = 3; 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/hash_instance/foo/two.js: -------------------------------------------------------------------------------- 1 | // abcdefg 2 | module.exports = Foo; 3 | function Foo () {} 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/hash_instance/one.js: -------------------------------------------------------------------------------- 1 | // abcdefg 2 | module.exports = Foo; 3 | function Foo () {} 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/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/demo-component/node_modules/browserify/test/hash_instance_context/one/dir/g.js: -------------------------------------------------------------------------------- 1 | // FILE G ONE 2 | module.exports = 3 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/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/demo-component/node_modules/browserify/test/hash_instance_context/one/g.js: -------------------------------------------------------------------------------- 1 | // FILE G ONE 2 | module.exports = 5 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/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/demo-component/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/demo-component/node_modules/browserify/test/hash_instance_context/three/dir/h.js: -------------------------------------------------------------------------------- 1 | // FILE H THREE 2 | module.exports = 4 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/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/demo-component/node_modules/browserify/test/hash_instance_context/three/g.js: -------------------------------------------------------------------------------- 1 | // FILE G THREE 2 | module.exports = require('./h.js') + 1; 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/hash_instance_context/three/h.js: -------------------------------------------------------------------------------- 1 | // FILE H THREE 2 | module.exports = 4 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/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/demo-component/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/demo-component/node_modules/browserify/test/hash_instance_context/two/dir/h.js: -------------------------------------------------------------------------------- 1 | // FILE H TWO 2 | module.exports = 2 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/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/demo-component/node_modules/browserify/test/hash_instance_context/two/g.js: -------------------------------------------------------------------------------- 1 | // FILE G TWO 2 | module.exports = require('./h.js') + 1; 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/hash_instance_context/two/h.js: -------------------------------------------------------------------------------- 1 | // FILE H TWO 2 | module.exports = 4 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/id_hash/main.js: -------------------------------------------------------------------------------- 1 | var idhashdep = require('./require.js'); 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/id_hash/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bclinkinbeard/angular-component-demo/5ed788b14becc11818192667616ac0cd25ee879b/node_modules/demo-component/node_modules/browserify/test/id_hash/require.js -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/ignore/by-id.js: -------------------------------------------------------------------------------- 1 | t.deepEqual(require('events'), {}); 2 | t.deepEqual(require('bad id'), {}); 3 | t.deepEqual(require('beep'), {}); 4 | t.deepEqual(require('./skip.js'), {}); 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/ignore/main.js: -------------------------------------------------------------------------------- 1 | t.deepEqual(require('./skip.js'), {}); 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/ignore/skip.js: -------------------------------------------------------------------------------- 1 | t.fail('this file should have been skipped'); 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/json/beep.json: -------------------------------------------------------------------------------- 1 | { 2 | "beep" : "boop", 3 | "x" : 555 4 | } 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/json/main.js: -------------------------------------------------------------------------------- 1 | ex(require('./beep.json')); 2 | ex(require('./beep')); 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/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/demo-component/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/demo-component/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/demo-component/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/demo-component/node_modules/browserify/test/multi_entry/a.js: -------------------------------------------------------------------------------- 1 | times ++; 2 | t.equal(times, 1); 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/multi_entry/b.js: -------------------------------------------------------------------------------- 1 | times ++; 2 | t.equal(times, 2); 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/multi_entry/c.js: -------------------------------------------------------------------------------- 1 | times ++; 2 | t.equal(times, 3); 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/no_builtins/extra/fs.js: -------------------------------------------------------------------------------- 1 | exports.readFileSync = function () { return 'WHATEVER' }; 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/no_builtins/extra/tls.js: -------------------------------------------------------------------------------- 1 | console.log('WRITE CODE EVERY DAY'); 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/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/demo-component/node_modules/browserify/test/no_builtins/x.txt: -------------------------------------------------------------------------------- 1 | beep boop 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/node_modules/beep/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'boop' 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/paths/main.js: -------------------------------------------------------------------------------- 1 | t.equal(require('aaa'), 'A'); 2 | t.equal(require('bbb'), 'B'); 3 | t.equal(require('ccc'), 'C'); 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/paths/x/aaa/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'A' 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/paths/x/ccc/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'C' 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/paths/y/bbb/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'B' 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/paths/y/ccc/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'CY' 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/process/main.js: -------------------------------------------------------------------------------- 1 | process.nextTick(function () { 2 | done(require('./one'), require('./two')); 3 | }); 4 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/process/one.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/process/two.js: -------------------------------------------------------------------------------- 1 | module.exports = 2; 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/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/demo-component/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/demo-component/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/demo-component/node_modules/browserify/test/shebang/foo.js: -------------------------------------------------------------------------------- 1 | #!/blah 2 | module.exports = 1234; 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/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/demo-component/node_modules/browserify/test/standalone/main.js: -------------------------------------------------------------------------------- 1 | module.exports = function (cb) { 2 | cb(require('./one'), require('./two')); 3 | }; -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/standalone/one.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/standalone/two.js: -------------------------------------------------------------------------------- 1 | module.exports = 2; 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/stream/bar.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./foo.js') * 4 / 3 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/stream/foo.js: -------------------------------------------------------------------------------- 1 | module.exports = 333 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/stream/main.js: -------------------------------------------------------------------------------- 1 | t.equal(require('./foo.js'), 333); 2 | t.equal(require('./bar.js'), 444); 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/subdep/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('qq'); 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/subdep/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies" : { 3 | "qq" : "*" 4 | }, 5 | "main" : "index.js" 6 | } 7 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/tr/f.js: -------------------------------------------------------------------------------- 1 | t.equal(XYZ, 909); 2 | module.exports = function (x) { return x + BBB } 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/tr/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "browserify": { 3 | "transform": [ "xyz" ] 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/tr/subdir/g.js: -------------------------------------------------------------------------------- 1 | module.exports = XYZ + 90; 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/tr_args/main.js: -------------------------------------------------------------------------------- 1 | t.equal(XXX * 5, 555); 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/unicode/main.js: -------------------------------------------------------------------------------- 1 | done(require('./one'), require('./two')); -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/unicode/one.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/browserify/test/unicode/two.js: -------------------------------------------------------------------------------- 1 | module.exports = 2; 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/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/demo-component/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/demo-component/node_modules/partialify/.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 | npm-debug.log 15 | node_modules 16 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/partialify/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./custom').onlyAllow(); 2 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/partialify/node_modules/string-to-js/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/partialify/node_modules/string-to-js/History.md: -------------------------------------------------------------------------------- 1 | 2 | 0.0.1 / 2010-01-03 3 | ================== 4 | 5 | * Initial release 6 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/partialify/node_modules/string-to-js/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha \ 4 | --require should \ 5 | --reporter spec 6 | 7 | .PHONY: test -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/partialify/node_modules/through/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | - "0.10" 6 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/partialify/test/fixtures/fixture.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: red; 3 | color: #ccc; 4 | } 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/partialify/test/fixtures/fixture.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Text in HTML 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/partialify/test/fixtures/fixture.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "partialify", 3 | "version": "1.0.0", 4 | "description": "require()-able HTML, CSS, JSON and (potentially) more", 5 | "main": "index.js" 6 | } 7 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/partialify/test/fixtures/fixture.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/partialify/test/runners/css.js: -------------------------------------------------------------------------------- 1 | var css = require('../fixtures/fixture.css'); 2 | console.log(css); 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/partialify/test/runners/defaults.js: -------------------------------------------------------------------------------- 1 | output.html = require('../fixtures/fixture.html'); 2 | output.css = require('../fixtures/fixture.css'); 3 | output.json = require('../fixtures/fixture.json'); 4 | 5 | finish(); 6 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/partialify/test/runners/extras.js: -------------------------------------------------------------------------------- 1 | output.html = require('../fixtures/fixture.html'); 2 | output.css = require('../fixtures/fixture.css'); 3 | output.json = require('../fixtures/fixture.json'); 4 | output.xml = require('../fixtures/fixture.xml'); 5 | 6 | finish(); 7 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/partialify/test/runners/html.js: -------------------------------------------------------------------------------- 1 | var html = require('../fixtures/fixture.html'); 2 | console.log(html); 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/partialify/test/runners/json.js: -------------------------------------------------------------------------------- 1 | var json = require('../fixtures/fixture.json'); 2 | console.log(json); 3 | -------------------------------------------------------------------------------- /node_modules/demo-component/node_modules/partialify/test/runners/unique.js: -------------------------------------------------------------------------------- 1 | output.xml = require('../fixtures/fixture.xml'); 2 | output.csv = require('../fixtures/fixture.csv'); 3 | 4 | finish(); 5 | -------------------------------------------------------------------------------- /node_modules/demo-component/template.html: -------------------------------------------------------------------------------- 1 |
2 | Static template content 3 | 4 | 7 | 8 | 9 |
10 | --------------------------------------------------------------------------------