├── example ├── angular-client │ ├── bower_components │ │ ├── jquery │ │ │ └── src │ │ │ │ ├── outro.js │ │ │ │ ├── selector.js │ │ │ │ ├── var │ │ │ │ ├── arr.js │ │ │ │ ├── rnotwhite.js │ │ │ │ ├── strundefined.js │ │ │ │ ├── push.js │ │ │ │ ├── class2type.js │ │ │ │ ├── concat.js │ │ │ │ ├── slice.js │ │ │ │ ├── indexOf.js │ │ │ │ ├── pnum.js │ │ │ │ ├── toString.js │ │ │ │ ├── hasOwn.js │ │ │ │ └── support.js │ │ │ │ ├── ajax │ │ │ │ └── var │ │ │ │ │ ├── rquery.js │ │ │ │ │ └── nonce.js │ │ │ │ ├── css │ │ │ │ └── var │ │ │ │ │ ├── rmargin.js │ │ │ │ │ ├── cssExpand.js │ │ │ │ │ └── rnumnonpx.js │ │ │ │ ├── data │ │ │ │ └── var │ │ │ │ │ ├── data_priv.js │ │ │ │ │ └── data_user.js │ │ │ │ ├── manipulation │ │ │ │ └── var │ │ │ │ │ └── rcheckableType.js │ │ │ │ ├── core │ │ │ │ └── var │ │ │ │ │ └── rsingleTag.js │ │ │ │ ├── traversing │ │ │ │ └── var │ │ │ │ │ └── rneedsContext.js │ │ │ │ └── event │ │ │ │ └── support.js │ │ ├── lodash │ │ │ ├── .gitattributes │ │ │ ├── lib │ │ │ │ └── fp │ │ │ │ │ └── template │ │ │ │ │ └── modules │ │ │ │ │ ├── alias.jst │ │ │ │ │ ├── thru.jst │ │ │ │ │ ├── category.jst │ │ │ │ │ ├── fp.jst │ │ │ │ │ └── module.jst │ │ │ ├── .gitignore │ │ │ └── vendor │ │ │ │ ├── backbone │ │ │ │ └── test │ │ │ │ │ └── setup │ │ │ │ │ └── dom-setup.js │ │ │ │ └── firebug-lite │ │ │ │ └── skin │ │ │ │ └── xp │ │ │ │ ├── min.png │ │ │ │ ├── off.png │ │ │ │ ├── up.png │ │ │ │ ├── blank.gif │ │ │ │ ├── detach.png │ │ │ │ ├── down.png │ │ │ │ ├── group.gif │ │ │ │ ├── search.gif │ │ │ │ ├── search.png │ │ │ │ ├── shadow.gif │ │ │ │ ├── sprite.png │ │ │ │ ├── tabMid.png │ │ │ │ ├── buttonBg.png │ │ │ │ ├── disable.gif │ │ │ │ ├── disable.png │ │ │ │ ├── firebug.png │ │ │ │ ├── infoIcon.gif │ │ │ │ ├── infoIcon.png │ │ │ │ ├── minHover.png │ │ │ │ ├── offHover.png │ │ │ │ ├── shadow2.gif │ │ │ │ ├── tabLeft.png │ │ │ │ ├── tabRight.png │ │ │ │ ├── upActive.png │ │ │ │ ├── upHover.png │ │ │ │ ├── detachHover.png │ │ │ │ ├── downActive.png │ │ │ │ ├── downHover.png │ │ │ │ ├── errorIcon.gif │ │ │ │ ├── errorIcon.png │ │ │ │ ├── loading_16.gif │ │ │ │ ├── shadowAlpha.png │ │ │ │ ├── tabHoverMid.png │ │ │ │ ├── tabMenuPin.png │ │ │ │ ├── titlebarMid.png │ │ │ │ ├── toolbarMid.png │ │ │ │ ├── tree_close.gif │ │ │ │ ├── tree_open.gif │ │ │ │ ├── twistyOpen.png │ │ │ │ ├── warningIcon.gif │ │ │ │ ├── warningIcon.png │ │ │ │ ├── buttonBgHover.png │ │ │ │ ├── disableHover.gif │ │ │ │ ├── disableHover.png │ │ │ │ ├── errorIcon-sm.png │ │ │ │ ├── tabHoverLeft.png │ │ │ │ ├── tabHoverRight.png │ │ │ │ ├── tabMenuRadio.png │ │ │ │ ├── tabMenuTarget.png │ │ │ │ ├── twistyClosed.png │ │ │ │ ├── tabMenuCheckbox.png │ │ │ │ ├── pixel_transparent.gif │ │ │ │ ├── tabMenuTargetHover.png │ │ │ │ ├── textEditorBorders.gif │ │ │ │ ├── textEditorBorders.png │ │ │ │ ├── textEditorCorners.gif │ │ │ │ └── textEditorCorners.png │ │ ├── angular-toastr │ │ │ ├── .npmignore │ │ │ └── index.js │ │ ├── malarkey │ │ │ └── test │ │ │ │ └── fixture.html │ │ ├── angular │ │ │ ├── index.js │ │ │ ├── bower.json │ │ │ └── angular.min.js.gzip │ │ ├── moment │ │ │ ├── src │ │ │ │ └── lib │ │ │ │ │ ├── locale │ │ │ │ │ ├── constructor.js │ │ │ │ │ ├── pre-post-format.js │ │ │ │ │ ├── invalid.js │ │ │ │ │ └── ordinal.js │ │ │ │ │ ├── utils │ │ │ │ │ ├── has-own-prop.js │ │ │ │ │ ├── is-array.js │ │ │ │ │ ├── is-date.js │ │ │ │ │ ├── map.js │ │ │ │ │ ├── abs-ceil.js │ │ │ │ │ └── abs-floor.js │ │ │ │ │ ├── moment │ │ │ │ │ └── clone.js │ │ │ │ │ ├── units │ │ │ │ │ └── constants.js │ │ │ │ │ └── create │ │ │ │ │ ├── local.js │ │ │ │ │ └── utc.js │ │ │ └── templates │ │ │ │ ├── globals.js │ │ │ │ ├── amd.js │ │ │ │ └── amd-named.js │ │ ├── angular-mocks │ │ │ ├── ngMock.js │ │ │ ├── ngMockE2E.js │ │ │ ├── ngAnimateMock.js │ │ │ └── bower.json │ │ ├── angular-cookies │ │ │ ├── index.js │ │ │ └── bower.json │ │ └── animate.css │ │ │ ├── source │ │ │ ├── fading_entrances │ │ │ │ └── fadeIn.css │ │ │ ├── fading_exits │ │ │ │ └── fadeOut.css │ │ │ └── attention_seekers │ │ │ │ └── flash.css │ │ │ └── bower.json │ ├── node │ │ ├── node_modules │ │ │ └── npm │ │ │ │ ├── test │ │ │ │ ├── fixtures │ │ │ │ │ ├── config │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── malformed │ │ │ │ │ │ ├── builtin │ │ │ │ │ │ └── globalconfig │ │ │ │ │ ├── onload.js │ │ │ │ │ ├── gitignore.tgz │ │ │ │ │ ├── npmignore.tgz │ │ │ │ │ ├── forked-underscore-1.5.1.tgz │ │ │ │ │ ├── gitignore-and-npmignore.tgz │ │ │ │ │ └── scoped-underscore-1.3.1.tgz │ │ │ │ ├── packages │ │ │ │ │ ├── npm-test-files │ │ │ │ │ │ ├── include4 │ │ │ │ │ │ ├── sub │ │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ ├── include2 │ │ │ │ │ │ │ └── include4 │ │ │ │ │ │ └── .npmignore │ │ │ │ │ ├── npm-test-ignore │ │ │ │ │ │ ├── include4 │ │ │ │ │ │ ├── sub │ │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ ├── include2 │ │ │ │ │ │ │ └── include4 │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── .npmignore │ │ │ │ │ ├── npm-test-blerg │ │ │ │ │ │ ├── README │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── npm-test-blerg3 │ │ │ │ │ │ ├── README │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── npm-test-dir-bin │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ └── dir-bin │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── npm-test-private │ │ │ │ │ │ ├── README │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── npm-test-url-dep │ │ │ │ │ │ └── README │ │ │ │ │ ├── npm-test-array-bin │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ └── array-bin │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── npm-test-bundled-git │ │ │ │ │ │ └── README │ │ │ │ │ ├── npm-test-env-reader │ │ │ │ │ │ └── README │ │ │ │ │ ├── npm-test-platform-all │ │ │ │ │ │ └── README │ │ │ │ │ ├── npm-test-platform │ │ │ │ │ │ └── README │ │ │ │ │ ├── npm-test-shrinkwrap │ │ │ │ │ │ └── README │ │ │ │ │ ├── npm-test-test-package │ │ │ │ │ │ └── README │ │ │ │ │ ├── npm-test-ignore-nested-nm │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ └── node_modules │ │ │ │ │ │ │ │ └── foo │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── npm-test-missing-bindir │ │ │ │ │ │ ├── README │ │ │ │ │ │ └── package.json │ │ │ │ │ └── npm-test-optional-deps │ │ │ │ │ │ └── README │ │ │ │ ├── disabled │ │ │ │ │ ├── change-bin-1 │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ └── foo │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── change-bin-2 │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ └── bar │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── package-foo │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── bundlerecurs │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── package-config │ │ │ │ │ │ └── package.json │ │ │ │ │ └── package-bar │ │ │ │ │ │ └── package.json │ │ │ │ └── tap │ │ │ │ │ └── zz-cleanup.js │ │ │ │ ├── node_modules │ │ │ │ ├── node-gyp │ │ │ │ │ ├── gyp │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── pylib │ │ │ │ │ │ │ └── gyp │ │ │ │ │ │ │ │ └── generator │ │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ ├── buildbot │ │ │ │ │ │ │ └── commit_queue │ │ │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ │ │ └── README │ │ │ │ │ │ ├── gyp.bat │ │ │ │ │ │ └── samples │ │ │ │ │ │ │ └── samples.bat │ │ │ │ │ ├── node_modules │ │ │ │ │ │ ├── minimatch │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ └── lru-cache │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ └── .travis.yml │ │ │ │ │ │ │ └── .travis.yml │ │ │ │ │ │ ├── path-array │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ └── node_modules │ │ │ │ │ │ │ │ └── array-index │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ ├── .jshintrc │ │ │ │ │ │ │ │ └── node_modules │ │ │ │ │ │ │ │ ├── debug │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ └── node_modules │ │ │ │ │ │ │ │ │ └── ms │ │ │ │ │ │ │ │ │ └── .npmignore │ │ │ │ │ │ │ │ └── es6-symbol │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ ├── es5-ext │ │ │ │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ │ │ │ ├── __tad.js │ │ │ │ │ │ │ │ │ │ ├── array │ │ │ │ │ │ │ │ │ │ │ ├── from │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ ├── of │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ ├── # │ │ │ │ │ │ │ │ │ │ │ │ ├── concat │ │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ │ ├── entries │ │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ │ ├── fill │ │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ │ ├── filter │ │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ │ ├── find │ │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ │ ├── keys │ │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ │ ├── map │ │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ │ ├── slice │ │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ │ ├── splice │ │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ │ ├── values │ │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ │ ├── @@iterator │ │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ │ ├── copy-within │ │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ │ └── find-index │ │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ └── _is-extensible.js │ │ │ │ │ │ │ │ │ │ ├── math │ │ │ │ │ │ │ │ │ │ │ ├── acosh │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ ├── asinh │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ ├── atanh │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ ├── cbrt │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ ├── clz32 │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ ├── cosh │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ ├── expm1 │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ ├── hypot │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ ├── imul │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ ├── log10 │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ ├── log1p │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ ├── log2 │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ ├── sign │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ ├── sinh │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ ├── tanh │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ ├── trunc │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ └── fround │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ ├── string │ │ │ │ │ │ │ │ │ │ │ ├── raw │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ ├── # │ │ │ │ │ │ │ │ │ │ │ │ ├── repeat │ │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ │ ├── @@iterator │ │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ │ ├── contains │ │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ │ ├── ends-with │ │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ │ ├── normalize │ │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ │ ├── _data.js │ │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ │ ├── starts-with │ │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ │ └── code-point-at │ │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ └── from-code-point │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ ├── number │ │ │ │ │ │ │ │ │ │ │ ├── is-nan │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ ├── is-finite │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ ├── is-integer │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ ├── is-safe-integer │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ ├── epsilon │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ ├── max-safe-integer │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ └── min-safe-integer │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ ├── object │ │ │ │ │ │ │ │ │ │ │ ├── assign │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ ├── keys │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ └── set-prototype-of │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ ├── reg-exp │ │ │ │ │ │ │ │ │ │ │ └── # │ │ │ │ │ │ │ │ │ │ │ │ ├── match │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ │ ├── split │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ │ ├── replace │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ │ ├── search │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ ├── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ │ └── shim.js │ │ │ │ │ │ │ │ │ │ │ │ ├── sticky │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ │ │ └── unicode │ │ │ │ │ │ │ │ │ │ │ │ └── is-implemented.js │ │ │ │ │ │ │ │ │ │ ├── global.js │ │ │ │ │ │ │ │ │ │ └── function │ │ │ │ │ │ │ │ │ │ │ ├── identity.js │ │ │ │ │ │ │ │ │ │ │ ├── noop.js │ │ │ │ │ │ │ │ │ │ │ └── constant.js │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ ├── function │ │ │ │ │ │ │ │ │ │ ├── noop.js │ │ │ │ │ │ │ │ │ │ ├── identity.js │ │ │ │ │ │ │ │ │ │ └── constant.js │ │ │ │ │ │ │ │ │ ├── global.js │ │ │ │ │ │ │ │ │ ├── number │ │ │ │ │ │ │ │ │ │ ├── epsilon │ │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ │ ├── # │ │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ │ ├── max-safe-integer │ │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ │ ├── min-safe-integer │ │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ │ ├── to-uint32.js │ │ │ │ │ │ │ │ │ │ └── is-nan │ │ │ │ │ │ │ │ │ │ │ ├── shim.js │ │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ ├── array │ │ │ │ │ │ │ │ │ │ ├── # │ │ │ │ │ │ │ │ │ │ │ └── @@iterator │ │ │ │ │ │ │ │ │ │ │ │ └── shim.js │ │ │ │ │ │ │ │ │ │ ├── from │ │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ │ └── of │ │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ ├── object │ │ │ │ │ │ │ │ │ │ ├── every.js │ │ │ │ │ │ │ │ │ │ ├── for-each.js │ │ │ │ │ │ │ │ │ │ ├── some.js │ │ │ │ │ │ │ │ │ │ ├── find-key.js │ │ │ │ │ │ │ │ │ │ ├── is-number-value.js │ │ │ │ │ │ │ │ │ │ ├── is-callable.js │ │ │ │ │ │ │ │ │ │ └── keys │ │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ ├── error │ │ │ │ │ │ │ │ │ │ └── # │ │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ │ │ └── es6-iterator │ │ │ │ │ │ │ │ │ │ │ └── .npmignore │ │ │ │ │ │ │ │ │ ├── boolean │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ ├── math │ │ │ │ │ │ │ │ │ │ ├── acosh │ │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ │ ├── asinh │ │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ │ ├── atanh │ │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ │ ├── cbrt │ │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ │ ├── clz32 │ │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ │ ├── cosh │ │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ │ ├── expm1 │ │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ │ ├── hypot │ │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ │ ├── imul │ │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ │ ├── log10 │ │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ │ ├── log1p │ │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ │ ├── log2 │ │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ │ ├── sign │ │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ │ ├── sinh │ │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ │ ├── tanh │ │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ │ ├── trunc │ │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ │ └── fround │ │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ └── string │ │ │ │ │ │ │ │ │ │ └── raw │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ └── d │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ └── .lint │ │ │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ │ ├── implement.js │ │ │ │ │ │ │ │ └── is-native-implemented.js │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── npmlog │ │ │ │ │ │ │ └── node_modules │ │ │ │ │ │ │ │ ├── ansi │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ └── .jshintrc │ │ │ │ │ │ │ │ └── are-we-there-yet │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ └── node_modules │ │ │ │ │ │ │ │ └── delegates │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ └── Makefile │ │ │ │ │ │ └── glob │ │ │ │ │ │ │ └── node_modules │ │ │ │ │ │ │ └── minimatch │ │ │ │ │ │ │ └── node_modules │ │ │ │ │ │ │ └── brace-expansion │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ └── node_modules │ │ │ │ │ │ │ ├── balanced-match │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ └── Makefile │ │ │ │ │ │ │ └── concat-map │ │ │ │ │ │ │ └── .travis.yml │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── .jshintrc │ │ │ │ ├── iferr │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── test │ │ │ │ │ │ └── mocha.opts │ │ │ │ ├── nopt │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── .travis.yml │ │ │ │ ├── async-some │ │ │ │ │ └── .npmignore │ │ │ │ ├── fs-vacuum │ │ │ │ │ └── .npmignore │ │ │ │ ├── readable-stream │ │ │ │ │ ├── .zuul.yml │ │ │ │ │ ├── node_modules │ │ │ │ │ │ ├── string_decoder │ │ │ │ │ │ │ └── .npmignore │ │ │ │ │ │ ├── core-util-is │ │ │ │ │ │ │ └── README.md │ │ │ │ │ │ ├── isarray │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── util-deprecate │ │ │ │ │ │ │ └── node.js │ │ │ │ │ │ └── process-nextick-args │ │ │ │ │ │ │ └── .travis.yml │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── duplex.js │ │ │ │ │ ├── writable.js │ │ │ │ │ ├── transform.js │ │ │ │ │ └── passthrough.js │ │ │ │ ├── read-package-tree │ │ │ │ │ ├── test │ │ │ │ │ │ └── fixtures │ │ │ │ │ │ │ ├── deep │ │ │ │ │ │ │ └── .keep │ │ │ │ │ │ │ ├── other │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ └── .bin │ │ │ │ │ │ │ └── archy.txt │ │ │ │ │ │ │ ├── bad │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ ├── noname │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ └── foo │ │ │ │ │ │ │ │ │ └── keep-alive │ │ │ │ │ │ │ └── archy.txt │ │ │ │ │ │ │ ├── empty │ │ │ │ │ │ │ └── node_modules │ │ │ │ │ │ │ │ └── foo │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ ├── root │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ └── selflink │ │ │ │ │ │ │ └── package.json │ │ │ │ │ └── .travis.yml │ │ │ │ ├── request │ │ │ │ │ ├── node_modules │ │ │ │ │ │ ├── aws4 │ │ │ │ │ │ │ ├── .tern-port │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ └── lru-cache │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ └── .travis.yml │ │ │ │ │ │ │ └── .travis.yml │ │ │ │ │ │ ├── extend │ │ │ │ │ │ │ └── .npmignore │ │ │ │ │ │ ├── bl │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ └── .travis.yml │ │ │ │ │ │ ├── isstream │ │ │ │ │ │ │ └── .npmignore │ │ │ │ │ │ ├── qs │ │ │ │ │ │ │ ├── .eslintignore │ │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── json-stringify-safe │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ └── mocha.opts │ │ │ │ │ │ ├── hawk │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ ├── hoek │ │ │ │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ │ │ │ │ ├── ignore.txt │ │ │ │ │ │ │ │ │ │ │ ├── test1.js │ │ │ │ │ │ │ │ │ │ │ ├── test2.js │ │ │ │ │ │ │ │ │ │ │ └── test3.js │ │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ │ └── CONTRIBUTING.md │ │ │ │ │ │ │ │ ├── sntp │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ └── .travis.yml │ │ │ │ │ │ │ │ ├── boom │ │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ │ └── CONTRIBUTING.md │ │ │ │ │ │ │ │ └── cryptiles │ │ │ │ │ │ │ │ │ └── .travis.yml │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ └── images │ │ │ │ │ │ │ │ ├── hawk.png │ │ │ │ │ │ │ │ └── logo.png │ │ │ │ │ │ ├── form-data │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ │ └── browser.js │ │ │ │ │ │ ├── combined-stream │ │ │ │ │ │ │ └── node_modules │ │ │ │ │ │ │ │ └── delayed-stream │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ └── Makefile │ │ │ │ │ │ ├── http-signature │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ ├── jsprim │ │ │ │ │ │ │ │ │ └── node_modules │ │ │ │ │ │ │ │ │ │ ├── verror │ │ │ │ │ │ │ │ │ │ └── .npmignore │ │ │ │ │ │ │ │ │ │ └── extsprintf │ │ │ │ │ │ │ │ │ │ └── examples │ │ │ │ │ │ │ │ │ │ └── simple.js │ │ │ │ │ │ │ │ └── sshpk │ │ │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ │ ├── asn1 │ │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ │ └── .travis.yml │ │ │ │ │ │ │ │ │ ├── jsbn │ │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ │ └── example.js │ │ │ │ │ │ │ │ │ ├── tweetnacl │ │ │ │ │ │ │ │ │ │ └── .npmignore │ │ │ │ │ │ │ │ │ └── jodid25519 │ │ │ │ │ │ │ │ │ │ └── .travis.yml │ │ │ │ │ │ │ │ │ └── .npmignore │ │ │ │ │ │ │ └── .npmignore │ │ │ │ │ │ ├── node-uuid │ │ │ │ │ │ │ └── .npmignore │ │ │ │ │ │ ├── stringstream │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ └── .npmignore │ │ │ │ │ │ ├── har-validator │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ ├── is-my-json-valid │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ │ │ ├── xtend │ │ │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ │ │ └── Makefile │ │ │ │ │ │ │ │ │ │ ├── generate-function │ │ │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ │ │ └── .travis.yml │ │ │ │ │ │ │ │ │ │ └── generate-object-property │ │ │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ │ │ └── .travis.yml │ │ │ │ │ │ │ │ │ └── .travis.yml │ │ │ │ │ │ │ │ ├── commander │ │ │ │ │ │ │ │ │ └── node_modules │ │ │ │ │ │ │ │ │ │ └── graceful-readlink │ │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ │ └── .travis.yml │ │ │ │ │ │ │ │ └── pinkie-promise │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ │ └── schemas │ │ │ │ │ │ │ │ └── har.json │ │ │ │ │ │ ├── oauth-sign │ │ │ │ │ │ │ └── README.md │ │ │ │ │ │ ├── tunnel-agent │ │ │ │ │ │ │ └── README.md │ │ │ │ │ │ ├── aws-sign2 │ │ │ │ │ │ │ └── README.md │ │ │ │ │ │ └── forever-agent │ │ │ │ │ │ │ └── README.md │ │ │ │ │ └── .npmignore │ │ │ │ ├── aproba │ │ │ │ │ └── .npmignore │ │ │ │ ├── normalize-git-url │ │ │ │ │ └── .npmignore │ │ │ │ ├── normalize-package-data │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── test │ │ │ │ │ │ └── fixtures │ │ │ │ │ │ │ ├── no-description.json │ │ │ │ │ │ │ └── badscripts.json │ │ │ │ │ ├── node_modules │ │ │ │ │ │ └── is-builtin-module │ │ │ │ │ │ │ └── node_modules │ │ │ │ │ │ │ └── builtin-modules │ │ │ │ │ │ │ └── static.js │ │ │ │ │ └── AUTHORS │ │ │ │ ├── readdir-scoped-modules │ │ │ │ │ ├── test │ │ │ │ │ │ └── fixtures │ │ │ │ │ │ │ ├── @org │ │ │ │ │ │ │ ├── x │ │ │ │ │ │ │ │ └── .keep │ │ │ │ │ │ │ └── y │ │ │ │ │ │ │ │ └── .keep │ │ │ │ │ │ │ ├── a │ │ │ │ │ │ │ ├── x │ │ │ │ │ │ │ │ └── .keep │ │ │ │ │ │ │ └── y │ │ │ │ │ │ │ │ └── .keep │ │ │ │ │ │ │ ├── b │ │ │ │ │ │ │ ├── x │ │ │ │ │ │ │ │ └── .keep │ │ │ │ │ │ │ └── y │ │ │ │ │ │ │ │ └── .keep │ │ │ │ │ │ │ └── @scope │ │ │ │ │ │ │ ├── x │ │ │ │ │ │ │ └── .keep │ │ │ │ │ │ │ └── y │ │ │ │ │ │ │ └── .keep │ │ │ │ │ └── .travis.yml │ │ │ │ ├── npmlog │ │ │ │ │ └── node_modules │ │ │ │ │ │ ├── ansi │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ └── .jshintrc │ │ │ │ │ │ ├── are-we-there-yet │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ └── delegates │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ └── Makefile │ │ │ │ │ │ └── .npmignore │ │ │ │ │ │ └── gauge │ │ │ │ │ │ └── example.png │ │ │ │ ├── read-package-json │ │ │ │ │ ├── test │ │ │ │ │ │ └── fixtures │ │ │ │ │ │ │ ├── readmes │ │ │ │ │ │ │ ├── README │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── readmexxx.yz │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ └── echo │ │ │ │ │ │ │ ├── erroneous.json │ │ │ │ │ │ │ ├── bom.json │ │ │ │ │ │ │ └── nobom.json │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ └── node_modules │ │ │ │ │ │ └── json-parse-helpfulerror │ │ │ │ │ │ └── node_modules │ │ │ │ │ │ └── jju │ │ │ │ │ │ └── .npmignore │ │ │ │ ├── retry │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── index.js │ │ │ │ │ ├── test │ │ │ │ │ │ └── runner.js │ │ │ │ │ └── equation.gif │ │ │ │ ├── validate-npm-package-name │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── node_modules │ │ │ │ │ │ └── builtins │ │ │ │ │ │ └── .travis.yml │ │ │ │ ├── columnify │ │ │ │ │ ├── node_modules │ │ │ │ │ │ └── wcwidth │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ └── node_modules │ │ │ │ │ │ │ └── defaults │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ └── node_modules │ │ │ │ │ │ │ └── clone │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ └── .travis.yml │ │ │ │ │ ├── width.js │ │ │ │ │ └── Makefile │ │ │ │ ├── hosted-git-info │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── .travis.yml │ │ │ │ ├── init-package-json │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── node_modules │ │ │ │ │ │ └── promzard │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── exports.input │ │ │ │ │ │ │ └── simple.input │ │ │ │ │ ├── .travis.yml │ │ │ │ │ └── example │ │ │ │ │ │ └── init │ │ │ │ │ │ └── basic-init.js │ │ │ │ ├── read-cmd-shim │ │ │ │ │ └── .npmignore │ │ │ │ ├── slide │ │ │ │ │ ├── index.js │ │ │ │ │ └── lib │ │ │ │ │ │ └── slide.js │ │ │ │ ├── cmd-shim │ │ │ │ │ ├── node_modules │ │ │ │ │ │ └── graceful-fs │ │ │ │ │ │ │ └── .npmignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ └── .npmignore │ │ │ │ ├── fstream-npm │ │ │ │ │ ├── node_modules │ │ │ │ │ │ └── fstream-ignore │ │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ └── .ignore │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ └── node_modules │ │ │ │ │ │ │ └── minimatch │ │ │ │ │ │ │ └── node_modules │ │ │ │ │ │ │ └── brace-expansion │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ └── node_modules │ │ │ │ │ │ │ ├── balanced-match │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ └── Makefile │ │ │ │ │ │ │ └── concat-map │ │ │ │ │ │ │ └── .travis.yml │ │ │ │ │ └── .npmignore │ │ │ │ ├── which │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── node_modules │ │ │ │ │ │ └── isexe │ │ │ │ │ │ │ └── .npmignore │ │ │ │ │ └── .travis.yml │ │ │ │ ├── inherits │ │ │ │ │ └── inherits.js │ │ │ │ ├── realize-package-specifier │ │ │ │ │ └── .npmignore │ │ │ │ ├── sha │ │ │ │ │ └── .npmignore │ │ │ │ ├── write-file-atomic │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── .travis.yml │ │ │ │ ├── unique-filename │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── node_modules │ │ │ │ │ │ └── unique-slug │ │ │ │ │ │ └── .npmignore │ │ │ │ ├── abbrev │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ └── CONTRIBUTING.md │ │ │ │ ├── archy │ │ │ │ │ └── .travis.yml │ │ │ │ ├── config-chain │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── node_modules │ │ │ │ │ │ └── proto-list │ │ │ │ │ │ │ └── README.md │ │ │ │ │ └── test │ │ │ │ │ │ ├── ignore-unfound-file.js │ │ │ │ │ │ └── broken.js │ │ │ │ ├── editor │ │ │ │ │ └── example │ │ │ │ │ │ ├── beep.json │ │ │ │ │ │ └── edit.js │ │ │ │ ├── tar │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── test │ │ │ │ │ │ ├── fixtures.tgz │ │ │ │ │ │ └── cb-never-called-1.0.1.tgz │ │ │ │ ├── fs-write-stream-atomic │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── .travis.yml │ │ │ │ ├── semver │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── .travis.yml │ │ │ │ ├── chownr │ │ │ │ │ └── README.md │ │ │ │ ├── npm-registry-client │ │ │ │ │ ├── node_modules │ │ │ │ │ │ ├── retry │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ │ └── runner.js │ │ │ │ │ │ │ └── equation.gif │ │ │ │ │ │ └── concat-stream │ │ │ │ │ │ │ └── node_modules │ │ │ │ │ │ │ └── typedarray │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ └── tarray.js │ │ │ │ │ └── .npmignore │ │ │ │ ├── npm-user-validate │ │ │ │ │ ├── .travis.yml │ │ │ │ │ └── .npmignore │ │ │ │ ├── text-table │ │ │ │ │ ├── .travis.yml │ │ │ │ │ └── example │ │ │ │ │ │ ├── table.js │ │ │ │ │ │ └── align.js │ │ │ │ ├── unpipe │ │ │ │ │ └── HISTORY.md │ │ │ │ ├── mkdirp │ │ │ │ │ ├── node_modules │ │ │ │ │ │ └── minimist │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ └── parse.js │ │ │ │ │ ├── .travis.yml │ │ │ │ │ └── examples │ │ │ │ │ │ └── pow.js │ │ │ │ ├── glob │ │ │ │ │ └── node_modules │ │ │ │ │ │ └── minimatch │ │ │ │ │ │ └── node_modules │ │ │ │ │ │ └── brace-expansion │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ └── node_modules │ │ │ │ │ │ ├── balanced-match │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ └── Makefile │ │ │ │ │ │ └── concat-map │ │ │ │ │ │ └── .travis.yml │ │ │ │ ├── fstream │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── .travis.yml │ │ │ │ ├── lockfile │ │ │ │ │ └── test │ │ │ │ │ │ └── fixtures │ │ │ │ │ │ ├── child.js │ │ │ │ │ │ └── bad-child.js │ │ │ │ ├── dezalgo │ │ │ │ │ └── .travis.yml │ │ │ │ ├── ansi-regex │ │ │ │ │ └── index.js │ │ │ │ ├── osenv │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── .travis.yml │ │ │ │ ├── read-installed │ │ │ │ │ ├── test │ │ │ │ │ │ └── fixtures │ │ │ │ │ │ │ ├── extraneous-dev-dep │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ ├── extraneous-detected │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ ├── grandparent-peer │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ └── grandparent-peer-dev │ │ │ │ │ │ │ └── package.json │ │ │ │ │ └── .npmignore │ │ │ │ └── strip-ansi │ │ │ │ │ └── index.js │ │ │ │ ├── cli.js │ │ │ │ ├── lib │ │ │ │ ├── start.js │ │ │ │ ├── stop.js │ │ │ │ ├── restart.js │ │ │ │ ├── faq.js │ │ │ │ ├── cache │ │ │ │ │ └── get-stat.js │ │ │ │ ├── utils │ │ │ │ │ └── temp-filename.js │ │ │ │ └── install │ │ │ │ │ └── access-error.js │ │ │ │ ├── html │ │ │ │ └── favicon.ico │ │ │ │ ├── make.bat │ │ │ │ ├── scripts │ │ │ │ ├── publish-tag.js │ │ │ │ └── update-authors.sh │ │ │ │ └── bin │ │ │ │ └── node-gyp-bin │ │ │ │ ├── node-gyp.cmd │ │ │ │ └── node-gyp │ │ └── node │ ├── .bowerrc │ ├── gulp │ │ └── .eslintrc │ ├── src │ │ ├── app │ │ │ ├── components │ │ │ │ └── navbar │ │ │ │ │ └── navbar.scss │ │ │ ├── unauthorized │ │ │ │ └── unauthorized.html │ │ │ ├── index.module.js │ │ │ └── index.constants.js │ │ ├── favicon.ico │ │ └── assets │ │ │ └── images │ │ │ ├── gulp.png │ │ │ ├── karma.png │ │ │ ├── angular.png │ │ │ ├── jasmine.png │ │ │ ├── yeoman.png │ │ │ ├── node-sass.png │ │ │ ├── protractor.png │ │ │ └── browsersync.png │ ├── e2e │ │ └── .eslintrc │ └── .eslintrc ├── screenshot03_uirootset.png ├── screenshot04_refreshed.png ├── screenshot01_notconfigured.png ├── screenshot02_configuration.png └── rest-service │ ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.properties │ │ └── maven-wrapper.jar │ └── src │ └── main │ └── resources │ └── application.properties ├── .gitignore ├── .gitlab-ci.yml └── js-portlet ├── src ├── main │ ├── resources │ │ ├── application.yml │ │ └── application.properties │ └── webapp │ │ ├── icon.png │ │ └── WEB-INF │ │ ├── templates │ │ ├── notconfigured.html │ │ └── notfound.html │ │ └── liferay-plugin-package.properties └── test │ └── resources │ ├── website │ ├── angular.png │ └── index.module.js │ └── test.yml └── lib └── jaunt1.1.4.jar /example/angular-client/bower_components/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | })); 2 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/fixtures/config/package.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/angular-client/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/gyp/OWNERS: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/packages/npm-test-files/include4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/packages/npm-test-ignore/include4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | **/dist 2 | **/node_modules 3 | **/.tmp 4 | **/target 5 | cookies.obj 6 | -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- 1 | image: maven:latest 2 | 3 | build: 4 | script: "mvn clean install -B" -------------------------------------------------------------------------------- /example/angular-client/bower_components/angular-toastr/.npmignore: -------------------------------------------------------------------------------- 1 | test/ 2 | config/ 3 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/fixtures/config/malformed: -------------------------------------------------------------------------------- 1 | email = """ -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/packages/npm-test-files/sub/include: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/packages/npm-test-files/sub/include2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/packages/npm-test-ignore/sub/include: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/packages/npm-test-ignore/sub/include2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/angular-client/gulp/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "node": true 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/iferr/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/gyp/.npmignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/nopt/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/async-some/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/fs-vacuum/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/readable-stream/.zuul.yml: -------------------------------------------------------------------------------- 1 | ui: tape 2 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define([ "./selector-sizzle" ]); 2 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/malarkey/test/fixture.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/read-package-tree/test/fixtures/deep/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/aws4/.tern-port: -------------------------------------------------------------------------------- 1 | 62638 -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/extend/.npmignore: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/fixtures/config/builtin: -------------------------------------------------------------------------------- 1 | builtin-config = true 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/fixtures/onload.js: -------------------------------------------------------------------------------- 1 | console.error('called onload') 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/packages/npm-test-blerg/README: -------------------------------------------------------------------------------- 1 | just an npm test 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/packages/npm-test-blerg3/README: -------------------------------------------------------------------------------- 1 | just an npm test 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/packages/npm-test-dir-bin/README: -------------------------------------------------------------------------------- 1 | just an npm test 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/packages/npm-test-ignore/README: -------------------------------------------------------------------------------- 1 | just an npm test 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/packages/npm-test-private/README: -------------------------------------------------------------------------------- 1 | just an npm test 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/packages/npm-test-url-dep/README: -------------------------------------------------------------------------------- 1 | just an npm test 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/cli.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('./bin/npm-cli.js') 3 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/aproba/.npmignore: -------------------------------------------------------------------------------- 1 | *~ 2 | node_modules 3 | .#* 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/normalize-git-url/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/normalize-package-data/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules/ -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/readdir-scoped-modules/test/fixtures/@org/x/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/readdir-scoped-modules/test/fixtures/@org/y/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/readdir-scoped-modules/test/fixtures/a/x/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/readdir-scoped-modules/test/fixtures/a/y/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/readdir-scoped-modules/test/fixtures/b/x/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/readdir-scoped-modules/test/fixtures/b/y/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/bl/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/isstream/.npmignore: -------------------------------------------------------------------------------- 1 | *.tgz 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/qs/.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/fixtures/config/globalconfig: -------------------------------------------------------------------------------- 1 | package-config:foo = boo 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/packages/npm-test-array-bin/README: -------------------------------------------------------------------------------- 1 | just an npm test 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/packages/npm-test-bundled-git/README: -------------------------------------------------------------------------------- 1 | just an npm test 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/packages/npm-test-env-reader/README: -------------------------------------------------------------------------------- 1 | just an npm test 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/packages/npm-test-platform-all/README: -------------------------------------------------------------------------------- 1 | just an npm test 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/packages/npm-test-platform/README: -------------------------------------------------------------------------------- 1 | just an npm test 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/packages/npm-test-shrinkwrap/README: -------------------------------------------------------------------------------- 1 | just an npm test 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/packages/npm-test-test-package/README: -------------------------------------------------------------------------------- 1 | just an npm test 2 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/angular/index.js: -------------------------------------------------------------------------------- 1 | require('./angular'); 2 | module.exports = angular; 3 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return []; 3 | }); 4 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/moment/src/lib/locale/constructor.js: -------------------------------------------------------------------------------- 1 | export function Locale() { 2 | } 3 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/npmlog/node_modules/ansi/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/read-package-json/test/fixtures/readmes/README: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/read-package-tree/test/fixtures/other/node_modules/.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/readdir-scoped-modules/test/fixtures/@scope/x/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/readdir-scoped-modules/test/fixtures/@scope/y/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/retry/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules/* 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/retry/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/retry'); -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/validate-npm-package-name/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/disabled/change-bin-1/bin/foo: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "foo" 3 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/disabled/change-bin-2/bin/bar: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "foo" 3 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/packages/npm-test-ignore-nested-nm/README: -------------------------------------------------------------------------------- 1 | just an npm test 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/packages/npm-test-missing-bindir/README: -------------------------------------------------------------------------------- 1 | just an npm test 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/packages/npm-test-optional-deps/README: -------------------------------------------------------------------------------- 1 | just an npm test 2 | -------------------------------------------------------------------------------- /example/angular-client/src/app/components/navbar/navbar.scss: -------------------------------------------------------------------------------- 1 | .acme-navbar-text{ 2 | color: white; 3 | } 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/columnify/node_modules/wcwidth/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/hosted-git-info/.npmignore: -------------------------------------------------------------------------------- 1 | *~ 2 | .# 3 | node_modules 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/init-package-json/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .eslintrc 3 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/minimatch/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/read-cmd-shim/.npmignore: -------------------------------------------------------------------------------- 1 | .#* 2 | *~ 3 | node_modules 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/slide/index.js: -------------------------------------------------------------------------------- 1 | module.exports=require("./lib/slide") 2 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/jquery/src/ajax/var/rquery.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/\?/); 3 | }); 4 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/jquery/src/var/rnotwhite.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/\S+/g); 3 | }); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/lib/start.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./utils/lifecycle.js').cmd('start') 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/lib/stop.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./utils/lifecycle.js').cmd('stop') 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/cmd-shim/node_modules/graceful-fs/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/test/.npmignore: -------------------------------------------------------------------------------- 1 | */a 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/read-package-json/test/fixtures/readmes/README.md: -------------------------------------------------------------------------------- 1 | *markdown* 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/json-stringify-safe/.npmignore: -------------------------------------------------------------------------------- 1 | /*.tgz 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/which/.npmignore: -------------------------------------------------------------------------------- 1 | .nyc_output/ 2 | coverage/ 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /example/angular-client/src/app/unauthorized/unauthorized.html: -------------------------------------------------------------------------------- 1 | 2 |

You are unauthorized to see this content.

3 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/angular-mocks/ngMock.js: -------------------------------------------------------------------------------- 1 | require('./angular-mocks'); 2 | module.exports = 'ngMock'; 3 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/jquery/src/css/var/rmargin.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/^margin/); 3 | }); 4 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/lib/fp/template/modules/alias.jst: -------------------------------------------------------------------------------- 1 | module.exports = require('./<%= name %>'); 2 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/lib/fp/template/modules/thru.jst: -------------------------------------------------------------------------------- 1 | module.exports = require('../<%= name %>'); 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/lib/restart.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./utils/lifecycle.js').cmd('restart') 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/.npmignore: -------------------------------------------------------------------------------- 1 | test/fixtures 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/inherits/inherits.js: -------------------------------------------------------------------------------- 1 | module.exports = require('util').inherits 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/.npmignore: -------------------------------------------------------------------------------- 1 | gyp/test 2 | node_modules 3 | test/.node-gyp 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/read-package-json/test/fixtures/readmes/readmexxx.yz: -------------------------------------------------------------------------------- 1 | extra noise 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/read-package-tree/test/fixtures/bad/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "NOPE" 3 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/read-package-tree/test/fixtures/noname/node_modules/foo/keep-alive: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/realize-package-specifier/.npmignore: -------------------------------------------------------------------------------- 1 | *~ 2 | .#* 3 | node_modules 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/hoek/test/modules/ignore.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/sha/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | test 3 | .gitignore 4 | .travis.yml -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/which/node_modules/isexe/.npmignore: -------------------------------------------------------------------------------- 1 | .nyc_output/ 2 | coverage/ 3 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/write-file-atomic/.npmignore: -------------------------------------------------------------------------------- 1 | *~ 2 | DEADJOE 3 | .#* 4 | node_modules -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/packages/npm-test-files/sub/include4: -------------------------------------------------------------------------------- 1 | This file should be in the package. 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/packages/npm-test-ignore/sub/include4: -------------------------------------------------------------------------------- 1 | This file should be in the package. 2 | -------------------------------------------------------------------------------- /js-portlet/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | rest: 2 | - pattern: /rest/api/todo/** 3 | location: http://localhost:8081 -------------------------------------------------------------------------------- /example/angular-client/bower_components/angular-cookies/index.js: -------------------------------------------------------------------------------- 1 | require('./angular-cookies'); 2 | module.exports = 'ngCookies'; 3 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/angular-mocks/ngMockE2E.js: -------------------------------------------------------------------------------- 1 | require('./angular-mocks'); 2 | module.exports = 'ngMockE2E'; 3 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/jquery/src/var/strundefined.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return typeof undefined; 3 | }); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/npmlog/node_modules/ansi/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/read-package-tree/test/fixtures/empty/node_modules/foo/package.json: -------------------------------------------------------------------------------- 1 | { 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/readable-stream/node_modules/string_decoder/.npmignore: -------------------------------------------------------------------------------- 1 | build 2 | test 3 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/aws4/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | coverage 3 | examples 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/form-data/lib/browser.js: -------------------------------------------------------------------------------- 1 | module.exports = FormData; -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/unique-filename/.npmignore: -------------------------------------------------------------------------------- 1 | *~ 2 | .#* 3 | DEADJOE 4 | 5 | node_modules 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/packages/npm-test-dir-bin/bin/dir-bin: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | console.log('ok') 3 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/packages/npm-test-ignore-nested-nm/lib/node_modules/foo: -------------------------------------------------------------------------------- 1 | I WILL NOT BE IGNORED! 2 | -------------------------------------------------------------------------------- /js-portlet/lib/jaunt1.1.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/js-portlet/lib/jaunt1.1.4.jar -------------------------------------------------------------------------------- /js-portlet/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | jwt.secretkey=secretkey 2 | jsportlet.rest.resource=classpath:application.yml -------------------------------------------------------------------------------- /example/angular-client/node/node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/node/node -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/abbrev/.npmignore: -------------------------------------------------------------------------------- 1 | .nyc_output 2 | nyc_output 3 | node_modules 4 | coverage 5 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/archy/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/cmd-shim/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | - "0.8" -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/columnify/node_modules/wcwidth/node_modules/defaults/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/config-chain/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | node_modules/* 3 | npm_debug.log 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/editor/example/beep.json: -------------------------------------------------------------------------------- 1 | { 2 | "a" : 3, 3 | "b" : 4, 4 | "c" : 5 5 | } 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/test/.ignore: -------------------------------------------------------------------------------- 1 | .gitignore 2 | .*.swp 3 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/read-package-json/test/fixtures/bin/echo: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "Hello world" -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/readable-stream/.npmignore: -------------------------------------------------------------------------------- 1 | build/ 2 | test/ 3 | examples/ 4 | fs.js 5 | zlib.js -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/aws4/node_modules/lru-cache/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/tar/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.10 4 | - 0.11 5 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/packages/npm-test-array-bin/bin/array-bin: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | console.log('ok') 3 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/angular-mocks/ngAnimateMock.js: -------------------------------------------------------------------------------- 1 | require('./angular-mocks'); 2 | module.exports = 'ngAnimateMock'; 3 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/jquery/src/var/push.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.push; 5 | }); 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/fs-write-stream-atomic/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | coverage/ 3 | .nyc_output/ 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/init-package-json/node_modules/promzard/.npmignore: -------------------------------------------------------------------------------- 1 | example/npm-init/package.json 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/minimatch/node_modules/lru-cache/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/normalize-package-data/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/readable-stream/duplex.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_duplex.js") 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/readable-stream/writable.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_writable.js") 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/combined-stream/node_modules/delayed-stream/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/hoek/test/modules/test1.js: -------------------------------------------------------------------------------- 1 | exports.x = 1; 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/hoek/test/modules/test2.js: -------------------------------------------------------------------------------- 1 | exports.y = 2; 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/hoek/test/modules/test3.js: -------------------------------------------------------------------------------- 1 | exports.z = 3; 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/semver/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | coverage/ 3 | .nyc_output/ 4 | nyc_output/ 5 | -------------------------------------------------------------------------------- /example/screenshot03_uirootset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/screenshot03_uirootset.png -------------------------------------------------------------------------------- /example/screenshot04_refreshed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/screenshot04_refreshed.png -------------------------------------------------------------------------------- /js-portlet/src/main/webapp/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/js-portlet/src/main/webapp/icon.png -------------------------------------------------------------------------------- /example/angular-client/bower_components/angular-toastr/index.js: -------------------------------------------------------------------------------- 1 | require('./dist/angular-toastr.tpls.js'); 2 | module.exports = 'toastr'; 3 | 4 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | // [[Class]] -> type pairs 3 | return {}; 4 | }); 5 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/jquery/src/var/concat.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.concat; 5 | }); 6 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/jquery/src/var/slice.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.slice; 5 | }); 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/chownr/README.md: -------------------------------------------------------------------------------- 1 | Like `chown -R`. 2 | 3 | Takes the same arguments as `fs.chown()` 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/iferr/test/mocha.opts: -------------------------------------------------------------------------------- 1 | --compilers coffee:coffee-script/register 2 | --reporter spec 3 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/npm-registry-client/node_modules/retry/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules/* 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/npm-registry-client/node_modules/retry/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/retry'); -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/npm-user-validate/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/npmlog/node_modules/ansi/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "laxcomma": true, 3 | "asi": true 4 | } 5 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/npmlog/node_modules/are-we-there-yet/node_modules/delegates/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/read-package-tree/test/fixtures/root/package.json: -------------------------------------------------------------------------------- 1 | {"name":"root", 2 | "version":"1.2.3"} -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/readable-stream/transform.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_transform.js") 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/sntp/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib'); -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/text-table/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/jquery/src/css/var/cssExpand.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return [ "Top", "Right", "Bottom", "Left" ]; 3 | }); 4 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/jquery/src/var/indexOf.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.indexOf; 5 | }); 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/readable-stream/passthrough.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_passthrough.js") 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/hawk/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.10 5 | 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/json-stringify-safe/test/mocha.opts: -------------------------------------------------------------------------------- 1 | --recursive 2 | --require must 3 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/unpipe/HISTORY.md: -------------------------------------------------------------------------------- 1 | 1.0.0 / 2015-06-14 2 | ================== 3 | 4 | * Initial release 5 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/disabled/package-foo/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "package-foo", 3 | "version": "0.5.0" 4 | } 5 | -------------------------------------------------------------------------------- /example/angular-client/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/src/favicon.ico -------------------------------------------------------------------------------- /example/screenshot01_notconfigured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/screenshot01_notconfigured.png -------------------------------------------------------------------------------- /example/screenshot02_configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/screenshot02_configuration.png -------------------------------------------------------------------------------- /example/angular-client/bower_components/jquery/src/data/var/data_priv.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../Data" 3 | ], function( Data ) { 4 | return new Data(); 5 | }); 6 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/jquery/src/data/var/data_user.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../Data" 3 | ], function( Data ) { 4 | return new Data(); 5 | }); 6 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/jquery/src/manipulation/var/rcheckableType.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/^(?:checkbox|radio)$/i); 3 | }); 4 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/).source; 3 | }); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/abbrev/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - '0.10' 4 | - '0.12' 5 | - 'iojs' 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/columnify/node_modules/wcwidth/node_modules/defaults/node_modules/clone/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/semver/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - '0.10' 4 | - '0.12' 5 | - 'iojs' 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/tar/.npmignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | node_modules 3 | examples/extract/ 4 | test/tmp/ 5 | test/fixtures/ 6 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/jquery/src/ajax/var/nonce.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../../core" 3 | ], function( jQuery ) { 4 | return jQuery.now(); 5 | }); 6 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.custom.* 3 | *.log 4 | *.map 5 | lodash.compat.min.js 6 | coverage 7 | node_modules 8 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/moment/src/lib/locale/pre-post-format.js: -------------------------------------------------------------------------------- 1 | export function preParsePostFormat (string) { 2 | return string; 3 | } 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/mkdirp/node_modules/minimist/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/minimatch/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.10 4 | - 0.11 5 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/npmlog/node_modules/are-we-there-yet/.npmignore: -------------------------------------------------------------------------------- 1 | *~ 2 | .#* 3 | node_modules 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/read-package-json/test/fixtures/erroneous.json: -------------------------------------------------------------------------------- 1 | { 2 | 'wrong': 'kind', 3 | 'of': 'quotes' 4 | } 5 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/read-package-json/test/fixtures/readmes/package.json: -------------------------------------------------------------------------------- 1 | {"name":"readmes", "version":"99.999.999999999"} 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/read-package-tree/test/fixtures/selflink/package.json: -------------------------------------------------------------------------------- 1 | {"name":"selflink", 2 | "version":"1.2.3"} 3 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/jsprim/node_modules/verror/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/node-uuid/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | .nyc_output 4 | coverage 5 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/stringstream/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.4 4 | - 0.6 5 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/moment/templates/globals.js: -------------------------------------------------------------------------------- 1 | /*global window:false*/ 2 | 3 | import moment from "./moment"; 4 | 5 | window.moment = moment; 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .gitignore 3 | .travis.yml 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/init-package-json/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - '0.10' 4 | - '0.12' 5 | - 'iojs' 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/npmlog/node_modules/ansi/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "laxcomma": true, 3 | "asi": true 4 | } 5 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/npmlog/node_modules/are-we-there-yet/node_modules/delegates/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/npmlog/node_modules/are-we-there-yet/.npmignore: -------------------------------------------------------------------------------- 1 | *~ 2 | .#* 3 | node_modules 4 | coverage 5 | .nyc_output 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/asn1/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/jsbn/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/which/.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | language: node_js 3 | node_js: 4 | - '0.10' 5 | - '0.12' 6 | - '4' 7 | -------------------------------------------------------------------------------- /example/rest-service/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.3.3/apache-maven-3.3.3-bin.zip -------------------------------------------------------------------------------- /example/angular-client/bower_components/jquery/src/var/toString.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./class2type" 3 | ], function( class2type ) { 4 | return class2type.toString; 5 | }); 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/fstream-npm/.npmignore: -------------------------------------------------------------------------------- 1 | # ignore the output junk from the example scripts 2 | example/output 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/hosted-git-info/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.11" 4 | - "0.10" 5 | script: "npm test" 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/.npmignore: -------------------------------------------------------------------------------- 1 | coverage 2 | tests 3 | node_modules 4 | examples 5 | release.sh 6 | disabled.appveyor.yml 7 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/is-my-json-valid/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | cosmicrealms.com 3 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/is-my-json-valid/node_modules/xtend/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/sntp/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.10 5 | 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/packages/npm-test-ignore-nested-nm/test.js: -------------------------------------------------------------------------------- 1 | var fs = require('fs') 2 | fs.statSync(__dirname + '/lib/node_modules/foo') 3 | -------------------------------------------------------------------------------- /example/angular-client/src/assets/images/gulp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/src/assets/images/gulp.png -------------------------------------------------------------------------------- /example/angular-client/src/assets/images/karma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/src/assets/images/karma.png -------------------------------------------------------------------------------- /js-portlet/src/test/resources/website/angular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/js-portlet/src/test/resources/website/angular.png -------------------------------------------------------------------------------- /example/angular-client/bower_components/jquery/src/var/hasOwn.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./class2type" 3 | ], function( class2type ) { 4 | return class2type.hasOwnProperty; 5 | }); 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/fstream/.npmignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | node_modules/ 3 | examples/deep-copy/ 4 | examples/path/ 5 | examples/filter-copy/ 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/npm-registry-client/.npmignore: -------------------------------------------------------------------------------- 1 | test/fixtures/cache 2 | node_modules 3 | npm-debug.log 4 | .eslintrc 5 | .jshintrc 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/read-package-tree/test/fixtures/noname/archy.txt: -------------------------------------------------------------------------------- 1 | test/fixtures/noname 2 | └── test/fixtures/noname/node_modules/foo 3 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/aws4/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | - "0.12" 5 | - "4.2" 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/unique-filename/node_modules/unique-slug/.npmignore: -------------------------------------------------------------------------------- 1 | *~ 2 | .#* 3 | DEADJOE 4 | 5 | node_modules 6 | .nyc_output/ 7 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/disabled/change-bin-1/package.json: -------------------------------------------------------------------------------- 1 | {"name":"npm-test-change-bin" 2 | ,"version":"1.2.3" 3 | ,"directories":{"bin":"./bin"}} 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/disabled/change-bin-2/package.json: -------------------------------------------------------------------------------- 1 | {"name":"npm-test-change-bin" 2 | ,"version":"2.3.4" 3 | ,"directories":{"bin":"./bin"}} 4 | -------------------------------------------------------------------------------- /example/angular-client/src/assets/images/angular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/src/assets/images/angular.png -------------------------------------------------------------------------------- /example/angular-client/src/assets/images/jasmine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/src/assets/images/jasmine.png -------------------------------------------------------------------------------- /example/angular-client/src/assets/images/yeoman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/src/assets/images/yeoman.png -------------------------------------------------------------------------------- /example/rest-service/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/rest-service/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /example/angular-client/bower_components/jquery/src/core/var/rsingleTag.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | // Match a standalone tag 3 | return (/^<(\w+)\s*\/?>(?:<\/\1>|)$/); 4 | }); 5 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/jquery/src/var/support.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | // All support tests are defined in their respective modules. 3 | return {}; 4 | }); 5 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/lib/fp/template/modules/category.jst: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'); 2 | module.exports = convert(require('../<%= name %>')); 3 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/mkdirp/node_modules/minimist/example/parse.js: -------------------------------------------------------------------------------- 1 | var argv = require('../')(process.argv.slice(2)); 2 | console.dir(argv); 3 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "asi": true, 3 | "laxcomma": true 4 | } 5 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/normalize-package-data/test/fixtures/no-description.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "foo-bar-package", 3 | "version": "0.0.1" 4 | } -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/is-my-json-valid/node_modules/generate-function/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/http-signature/.npmignore: -------------------------------------------------------------------------------- 1 | .gitmodules 2 | deps 3 | docs 4 | Makefile 5 | node_modules 6 | test 7 | tools -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/qs/test/index.js: -------------------------------------------------------------------------------- 1 | require('./parse'); 2 | 3 | require('./stringify'); 4 | 5 | require('./utils'); 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/validate-npm-package-name/node_modules/builtins/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/packages/npm-test-ignore/package.json: -------------------------------------------------------------------------------- 1 | { "name":"npm-test-ignore" 2 | , "version":"1.2.5" 3 | , "scripts":{"test":"bash test.sh"}} 4 | -------------------------------------------------------------------------------- /example/angular-client/src/assets/images/node-sass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/src/assets/images/node-sass.png -------------------------------------------------------------------------------- /example/angular-client/src/assets/images/protractor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/src/assets/images/protractor.png -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/lib/fp/template/modules/fp.jst: -------------------------------------------------------------------------------- 1 | var _ = require('./lodash.min').runInContext(); 2 | module.exports = require('./fp/_baseConvert')(_, _); 3 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/moment/src/lib/utils/has-own-prop.js: -------------------------------------------------------------------------------- 1 | export default function hasOwnProp(a, b) { 2 | return Object.prototype.hasOwnProperty.call(a, b); 3 | } 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .gitignore 3 | .travis.yml 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/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 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/is-my-json-valid/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/is-my-json-valid/node_modules/generate-object-property/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/packages/npm-test-files/.npmignore: -------------------------------------------------------------------------------- 1 | /sub/ignore1 2 | ./sub/include2 3 | ignore3 4 | ./include4 5 | ignoredir1 6 | ignoredir2/ 7 | *.tgz 8 | -------------------------------------------------------------------------------- /example/angular-client/src/assets/images/browsersync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/src/assets/images/browsersync.png -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/backbone/test/setup/dom-setup.js: -------------------------------------------------------------------------------- 1 | $('body').append( 2 | '
' + 3 | '
' 4 | ); 5 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/moment/src/lib/moment/clone.js: -------------------------------------------------------------------------------- 1 | import { Moment } from './constructor'; 2 | 3 | export function clone () { 4 | return new Moment(this); 5 | } 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/columnify/node_modules/wcwidth/node_modules/defaults/node_modules/clone/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.10 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/lockfile/test/fixtures/child.js: -------------------------------------------------------------------------------- 1 | var lockFile = require('../../lockfile.js') 2 | 3 | lockFile.lock('never-forget', function () {}) 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "asi": true, 3 | "laxcomma": true, 4 | "es5": true, 5 | "node": true, 6 | "strict": false 7 | } 8 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/read-package-tree/test/fixtures/other/archy.txt: -------------------------------------------------------------------------------- 1 | test/fixtures/other 2 | └── glob@4.0.5 test/fixtures/other/node_modules/glob (symlink) -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/disabled/bundlerecurs/package.json: -------------------------------------------------------------------------------- 1 | { "name" : "bundletest" 2 | , "version" : "1.0.0" 3 | , "dependencies" : { "bundletest" : "*" } 4 | } 5 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/packages/npm-test-ignore/.npmignore: -------------------------------------------------------------------------------- 1 | /sub/ignore1 2 | ./sub/include2 3 | ignore3 4 | ./include4 5 | ignoredir1 6 | ignoredir2/ 7 | *.tgz 8 | -------------------------------------------------------------------------------- /example/angular-client/src/app/index.module.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | 'use strict'; 3 | 4 | angular 5 | .module('pocAngularClient', ['ui.router', 'toastr', 'ngCookies']); 6 | 7 | })(); 8 | -------------------------------------------------------------------------------- /js-portlet/src/test/resources/test.yml: -------------------------------------------------------------------------------- 1 | rest: 2 | - pattern: /rest/api/todo/** 3 | location: http://localhost:8081 4 | - pattern: /rest/api/test/** 5 | location: http://localhost:3030 -------------------------------------------------------------------------------- /example/angular-client/bower_components/moment/src/lib/utils/is-array.js: -------------------------------------------------------------------------------- 1 | export default function isArray(input) { 2 | return Object.prototype.toString.call(input) === '[object Array]'; 3 | } 4 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/moment/templates/amd.js: -------------------------------------------------------------------------------- 1 | /*global define:false*/ 2 | 3 | import moment from "./moment"; 4 | 5 | define([], function () { 6 | return moment; 7 | }); 8 | -------------------------------------------------------------------------------- /example/angular-client/e2e/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "globals": { 3 | "browser": false, 4 | "element": false, 5 | "by": false, 6 | "$": false, 7 | "$$": false 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/html/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/node/node_modules/npm/html/favicon.ico -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/config-chain/node_modules/proto-list/README.md: -------------------------------------------------------------------------------- 1 | A list of objects, bound by their prototype chain. 2 | 3 | Used in npm's config stuff. 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/config-chain/test/ignore-unfound-file.js: -------------------------------------------------------------------------------- 1 | 2 | var cc = require('..') 3 | 4 | //should not throw 5 | cc(__dirname, 'non_existing_file') 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/init-package-json/example/init/basic-init.js: -------------------------------------------------------------------------------- 1 | exports.flavor = prompt("what's your favorite flavor of ice cream buddy?", "I LIKE THEM ALL") -------------------------------------------------------------------------------- /example/angular-client/bower_components/angular/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular", 3 | "version": "1.4.9", 4 | "main": "./angular.js", 5 | "ignore": [], 6 | "dependencies": { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/node_modules/minimatch/node_modules/brace-expansion/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .gitignore 3 | .travis.yml 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/commander/node_modules/graceful-readlink/.npmignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .DS_Store 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/hoek/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.10 5 | - 4.0 6 | 7 | sudo: false 8 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/asn1/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - 0.10 5 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/tweetnacl/.npmignore: -------------------------------------------------------------------------------- 1 | .eslintrc 2 | .travis.yml 3 | bower.json 4 | test 5 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/retry/test/runner.js: -------------------------------------------------------------------------------- 1 | var far = require('far').create(); 2 | 3 | far.add(__dirname); 4 | far.include(/\/test-.*\.js$/); 5 | far.execute(); 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/disabled/package-config/package.json: -------------------------------------------------------------------------------- 1 | {"name":"package-config" 2 | ,"version":"1.2.3" 3 | ,"config":{"foo":"bar"} 4 | ,"scripts":{"test":"./test.js"}} 5 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/packages/npm-test-ignore-nested-nm/package.json: -------------------------------------------------------------------------------- 1 | {"name":"npm-test-ignore-nested-nm" 2 | ,"version":"1.2.5" 3 | ,"scripts":{"test":"node test.js"}} 4 | -------------------------------------------------------------------------------- /js-portlet/src/test/resources/website/index.module.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | 'use strict'; 3 | 4 | angular 5 | .module('pocAngularClient', ['ui.router', 'toastr', 'ngCookies']); 6 | 7 | })(); -------------------------------------------------------------------------------- /example/angular-client/bower_components/angular/angular.min.js.gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/angular/angular.min.js.gzip -------------------------------------------------------------------------------- /example/angular-client/bower_components/jquery/src/css/var/rnumnonpx.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../../var/pnum" 3 | ], function( pnum ) { 4 | return new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); 5 | }); 6 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/moment/src/lib/locale/invalid.js: -------------------------------------------------------------------------------- 1 | export var defaultInvalidDate = 'Invalid date'; 2 | 3 | export function invalidDate () { 4 | return this._invalidDate; 5 | } 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/normalize-package-data/test/fixtures/badscripts.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bad-scripts-package", 3 | "version": "0.0.1", 4 | "scripts": "foo" 5 | } 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/typedarray/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/boom/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.10 5 | - 4.0 6 | 7 | sudo: false 8 | 9 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/qs/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Please view our [hapijs contributing guide](https://github.com/hapijs/hapi/blob/master/CONTRIBUTING.md). 2 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/moment/templates/amd-named.js: -------------------------------------------------------------------------------- 1 | /*global define:false*/ 2 | 3 | import moment from "./moment"; 4 | 5 | define("moment", [], function () { 6 | return moment; 7 | }); 8 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.4 4 | - 0.6 5 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/debug/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | example 5 | *.sock 6 | dist 7 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/is-my-json-valid/node_modules/xtend/Makefile: -------------------------------------------------------------------------------- 1 | browser: 2 | node ./support/compile 3 | 4 | .PHONY: browser -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/pinkie-promise/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = global.Promise || require('pinkie'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/cryptiles/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.10 5 | - 4.0 6 | 7 | sudo: false 8 | 9 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/slide/lib/slide.js: -------------------------------------------------------------------------------- 1 | exports.asyncMap = require("./async-map") 2 | exports.bindActor = require("./bind-actor") 3 | exports.chain = require("./chain") 4 | -------------------------------------------------------------------------------- /js-portlet/src/main/webapp/WEB-INF/templates/notconfigured.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Not configured 4 | 5 | 6 |

Portlet is not configured.

7 | 8 | 9 | -------------------------------------------------------------------------------- /js-portlet/src/main/webapp/WEB-INF/templates/notfound.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Not found 4 | 5 | 6 |

There were problem when fetching page.

7 | 8 | 9 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/jquery/src/traversing/var/rneedsContext.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../../core", 3 | "../../selector" 4 | ], function( jQuery ) { 5 | return jQuery.expr.match.needsContext; 6 | }); 7 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/lib/faq.js: -------------------------------------------------------------------------------- 1 | module.exports = faq 2 | 3 | faq.usage = 'npm faq' 4 | 5 | var npm = require('./npm.js') 6 | 7 | function faq (args, cb) { npm.commands.help(['faq'], cb) } 8 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/abbrev/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | To get started, sign the 3 | Contributor License Agreement. 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/dezalgo/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | before_script: npm install -g npm@latest 3 | node_js: 4 | - '0.8' 5 | - '0.10' 6 | - '0.12' 7 | - 'iojs' 8 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /node_modules 3 | /npm-debug.log 4 | /.lintcache 5 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/combined-stream/node_modules/delayed-stream/Makefile: -------------------------------------------------------------------------------- 1 | SHELL := /bin/bash 2 | 3 | test: 4 | @./test/run.js 5 | 6 | .PHONY: test 7 | 8 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/is-my-json-valid/node_modules/generate-function/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/fixtures/gitignore.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/node/node_modules/npm/test/fixtures/gitignore.tgz -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/fixtures/npmignore.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/node/node_modules/npm/test/fixtures/npmignore.tgz -------------------------------------------------------------------------------- /example/angular-client/bower_components/animate.css/source/fading_entrances/fadeIn.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeIn { 2 | from {opacity: 0;} 3 | 100% {opacity: 1;} 4 | } 5 | 6 | .fadeIn { 7 | animation-name: fadeIn; 8 | } 9 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/animate.css/source/fading_exits/fadeOut.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeOut { 2 | from {opacity: 1;} 3 | 100% {opacity: 0;} 4 | } 5 | 6 | .fadeOut { 7 | animation-name: fadeOut; 8 | } 9 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/moment/src/lib/utils/is-date.js: -------------------------------------------------------------------------------- 1 | export default function isDate(input) { 2 | return input instanceof Date || Object.prototype.toString.call(input) === '[object Date]'; 3 | } 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/make.bat: -------------------------------------------------------------------------------- 1 | :: The tests run "make doc" in the prepublish script, 2 | :: so this file gives windows something that'll exit 3 | :: successfully, without having to install make. 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/lockfile/test/fixtures/bad-child.js: -------------------------------------------------------------------------------- 1 | var lockFile = require('../../lockfile.js') 2 | 3 | lockFile.lockSync('never-forget') 4 | 5 | throw new Error('waaaaaaaaa') 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/is-my-json-valid/node_modules/generate-object-property/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/oauth-sign/README.md: -------------------------------------------------------------------------------- 1 | oauth-sign 2 | ========== 3 | 4 | OAuth 1 signing. Formerly a vendor lib in mikeal/request, now a standalone module. 5 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/disabled/package-bar/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "package-bar", 3 | "version": "0.5.0", 4 | "dependencies": { 5 | "package-foo": "*" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /example/rest-service/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.jpa.hibernate.ddl-auto=create 2 | spring.datasource.url = jdbc:hsqldb:mem:testdb 3 | 4 | server.port=8081 5 | spring.mvc.dispatch-options-request=true -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/lib/fp/template/modules/module.jst: -------------------------------------------------------------------------------- 1 | var convert = require('./convert'); 2 | module.exports = convert('<%= name %>', require('../<%= _.result(mapping.remap, name, name) %>')); 3 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/ansi-regex/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = function () { 3 | return /[\u001b\u009b][[()#;?]*(?:[0-9]{1,4}(?:;[0-9]{0,4})*)?[0-9A-ORZcf-nqry=><]/g; 4 | }; 5 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/mkdirp/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | - "0.12" 6 | - "iojs" 7 | before_install: 8 | - npm install -g npm@~1.4.6 9 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/__tad.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.context = null; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/normalize-package-data/node_modules/is-builtin-module/node_modules/builtin-modules/static.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = require('./builtin-modules.json'); 3 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/read-package-json/test/fixtures/bom.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "this", 3 | "description": "file", 4 | "author": "has ", 5 | "version" : "0.0.1" 6 | } -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/read-package-json/test/fixtures/nobom.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "this", 3 | "description": "file", 4 | "author": "has ", 5 | "version" : "0.0.1" 6 | } -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/read-package-tree/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | before_script: npm install -g npm@latest 3 | node_js: 4 | - '0.8' 5 | - '0.10' 6 | - '0.12' 7 | - 'iojs' 8 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/boom/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Please view our [hapijs contributing guide](https://github.com/hapijs/hapi/blob/master/CONTRIBUTING.md). 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/hoek/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Please view our [hapijs contributing guide](https://github.com/hapijs/hapi/blob/master/CONTRIBUTING.md). 2 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/retry/equation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/node/node_modules/npm/node_modules/retry/equation.gif -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/packages/npm-test-array-bin/package.json: -------------------------------------------------------------------------------- 1 | { "name":"npm-test-array-bin" 2 | , "version":"1.2.5" 3 | , "bin": [ "bin/array-bin" ] 4 | , "scripts": { "test": "node test.js" } } 5 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/packages/npm-test-private/package.json: -------------------------------------------------------------------------------- 1 | {"name":"npm-test-private" 2 | ,"version":"9.9.9-9" 3 | ,"homepage":"http://www.youtube.com/watch?v=1MLry6Cn_D4" 4 | ,"private":"true"} 5 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @node_modules/.bin/tape test/*.js 4 | 5 | .PHONY: test 6 | 7 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.4 4 | - 0.6 5 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/d/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /node_modules 3 | /npm-debug.log 4 | /.lintcache 5 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/npm-registry-client/node_modules/retry/test/runner.js: -------------------------------------------------------------------------------- 1 | var far = require('far').create(); 2 | 3 | far.add(__dirname); 4 | far.include(/\/test-.*\.js$/); 5 | far.execute(); 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/readdir-scoped-modules/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | before_script: npm install -g npm@latest 3 | node_js: 4 | - '0.8' 5 | - '0.10' 6 | - '0.12' 7 | - 'iojs' 8 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/tunnel-agent/README.md: -------------------------------------------------------------------------------- 1 | tunnel-agent 2 | ============ 3 | 4 | HTTP proxy tunneling agent. Formerly part of mikeal/request, now a standalone module. 5 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/tar/test/fixtures.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/node/node_modules/npm/node_modules/tar/test/fixtures.tgz -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/scripts/publish-tag.js: -------------------------------------------------------------------------------- 1 | var semver = require('semver') 2 | var version = semver.parse(require('../package.json').version) 3 | console.log('v%s.%s-next', version.major, version.minor) 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/packages/npm-test-blerg/package.json: -------------------------------------------------------------------------------- 1 | { "name":"npm-test-blerg" 2 | , "version" : "0.0.2" 3 | , "scripts" : { "test" : "node test.js" } 4 | , "publishConfig": {"tag": "foo"} 5 | } 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/packages/npm-test-dir-bin/package.json: -------------------------------------------------------------------------------- 1 | { "name":"npm-test-dir-bin" 2 | , "version":"1.2.5" 3 | , "directories": { "bin": "./bin" } 4 | , "scripts": { "test": "node test.js" } } 5 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/jquery/src/event/support.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../var/support" 3 | ], function( support ) { 4 | 5 | support.focusinBubbles = "onfocusin" in window; 6 | 7 | return support; 8 | 9 | }); 10 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/min.png -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/off.png -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/up.png -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/bin/node-gyp-bin/node-gyp.cmd: -------------------------------------------------------------------------------- 1 | if not defined npm_config_node_gyp ( 2 | node "%~dp0\..\..\node_modules\node-gyp\bin\node-gyp.js" %* 3 | ) else ( 4 | node "%npm_config_node_gyp%" %* 5 | ) 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/debug/node_modules/ms/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | test 3 | History.md 4 | Makefile 5 | component.json 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /node_modules 3 | /.lintcache 4 | /npm-debug.log 5 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/function/noop.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function () {}; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/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 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/blank.gif -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/detach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/detach.png -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/down.png -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/group.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/group.gif -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/search.gif -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/search.png -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/shadow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/shadow.gif -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/sprite.png -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/tabMid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/tabMid.png -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/columnify/width.js: -------------------------------------------------------------------------------- 1 | var stripAnsi = require('strip-ansi') 2 | var wcwidth = require('wcwidth') 3 | 4 | module.exports = function(str) { 5 | return wcwidth(stripAnsi(str)) 6 | } 7 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/editor/example/edit.js: -------------------------------------------------------------------------------- 1 | var editor = require('../'); 2 | editor(__dirname + '/beep.json', function (code, sig) { 3 | console.log('finished editing with code ' + code); 4 | }); 5 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/osenv/.npmignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | .*.swp 3 | 4 | .DS_Store 5 | *~ 6 | .project 7 | .settings 8 | npm-debug.log 9 | coverage.html 10 | .idea 11 | lib-cov 12 | 13 | node_modules 14 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/commander/node_modules/graceful-readlink/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | - "0.12" 5 | - "io.js" 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/.npmignore: -------------------------------------------------------------------------------- 1 | .gitmodules 2 | deps 3 | docs 4 | Makefile 5 | node_modules 6 | test 7 | tools 8 | coverage 9 | man/src 10 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/buttonBg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/buttonBg.png -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/disable.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/disable.gif -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/disable.png -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/firebug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/firebug.png -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/infoIcon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/infoIcon.gif -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/infoIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/infoIcon.png -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/minHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/minHover.png -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/offHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/offHover.png -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/shadow2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/shadow2.gif -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/tabLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/tabLeft.png -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/tabRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/tabRight.png -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/upActive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/upActive.png -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/upHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/upHover.png -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.4 4 | - 0.6 5 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/mkdirp/examples/pow.js: -------------------------------------------------------------------------------- 1 | var mkdirp = require('mkdirp'); 2 | 3 | mkdirp('/tmp/foo/bar/baz', function (err) { 4 | if (err) console.error(err) 5 | else console.log('pow!') 6 | }); 7 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/gyp/buildbot/commit_queue/OWNERS: -------------------------------------------------------------------------------- 1 | set noparent 2 | bradnelson@chromium.org 3 | bradnelson@google.com 4 | iannucci@chromium.org 5 | scottmg@chromium.org 6 | thakis@chromium.org 7 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/global.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = new Function("return this")(); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/array/from/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/array/of/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/math/acosh/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/math/asinh/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/math/atanh/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/math/cbrt/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/math/clz32/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/math/cosh/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/math/expm1/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/math/hypot/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/math/imul/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/math/log10/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/math/log1p/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/math/log2/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/math/sign/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/math/sinh/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/math/tanh/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/math/trunc/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/string/raw/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/npm-user-validate/.npmignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | .*.swp 3 | 4 | .DS_Store 5 | *~ 6 | .project 7 | .settings 8 | npm-debug.log 9 | coverage.html 10 | .idea 11 | lib-cov 12 | 13 | node_modules -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/read-installed/test/fixtures/extraneous-dev-dep/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "extraneous-dev-dep", 3 | "version": "0.0.0", 4 | "dependencies": { 5 | "d": "1.0.0" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/aws-sign2/README.md: -------------------------------------------------------------------------------- 1 | aws-sign 2 | ======== 3 | 4 | AWS signing. Originally pulled from LearnBoost/knox, maintained as vendor in request, now a standalone module. 5 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/fixtures/forked-underscore-1.5.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/node/node_modules/npm/test/fixtures/forked-underscore-1.5.1.tgz -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/fixtures/gitignore-and-npmignore.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/node/node_modules/npm/test/fixtures/gitignore-and-npmignore.tgz -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/fixtures/scoped-underscore-1.3.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/node/node_modules/npm/test/fixtures/scoped-underscore-1.3.1.tgz -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/detachHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/detachHover.png -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/downActive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/downActive.png -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/downHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/downHover.png -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/errorIcon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/errorIcon.gif -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/errorIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/errorIcon.png -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/loading_16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/loading_16.gif -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/shadowAlpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/shadowAlpha.png -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/tabHoverMid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/tabHoverMid.png -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/tabMenuPin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/tabMenuPin.png -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/titlebarMid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/titlebarMid.png -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/toolbarMid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/toolbarMid.png -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/tree_close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/tree_close.gif -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/tree_open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/tree_open.gif -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/twistyOpen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/twistyOpen.png -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/warningIcon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/warningIcon.gif -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/warningIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/warningIcon.png -------------------------------------------------------------------------------- /example/angular-client/bower_components/moment/src/lib/utils/map.js: -------------------------------------------------------------------------------- 1 | export default function map(arr, fn) { 2 | var res = [], i; 3 | for (i = 0; i < arr.length; ++i) { 4 | res.push(fn(arr[i], i)); 5 | } 6 | return res; 7 | } 8 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/columnify/Makefile: -------------------------------------------------------------------------------- 1 | 2 | all: columnify.js 3 | 4 | prepublish: all 5 | 6 | columnify.js: index.js package.json 7 | babel index.js > columnify.js 8 | 9 | .PHONY: all prepublish 10 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @node_modules/.bin/tape test/*.js 4 | 5 | .PHONY: test 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/function/identity.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (x) { return x; }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/number/epsilon/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = 2.220446049250313e-16; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/array/#/concat/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/array/#/entries/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/array/#/fill/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/array/#/filter/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/array/#/find/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/array/#/keys/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/array/#/map/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/array/#/slice/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/array/#/splice/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/array/#/values/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/math/fround/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/number/is-nan/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/object/assign/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/object/keys/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/reg-exp/#/match/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/reg-exp/#/split/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/string/#/repeat/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/test/implement.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof Symbol, 'function'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/normalize-package-data/AUTHORS: -------------------------------------------------------------------------------- 1 | # Names sorted by how much code was originally theirs. 2 | Isaac Z. Schlueter 3 | Meryn Stol 4 | Robert Kowalski -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/read-installed/.npmignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | .*.swp 3 | 4 | .DS_Store 5 | *~ 6 | .project 7 | .settings 8 | npm-debug.log 9 | coverage.html 10 | .idea 11 | lib-cov 12 | 13 | node_modules 14 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/read-installed/test/fixtures/extraneous-detected/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "extraneous-detected", 3 | "version": "0.0.0", 4 | "dependencies": { 5 | "ghjk": "0.0.0" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/text-table/example/table.js: -------------------------------------------------------------------------------- 1 | var table = require('../'); 2 | var t = table([ 3 | [ 'master', '0123456789abcdef' ], 4 | [ 'staging', 'fedcba9876543210' ] 5 | ]); 6 | console.log(t); 7 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/angular-mocks/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular-mocks", 3 | "version": "1.4.9", 4 | "main": "./angular-mocks.js", 5 | "ignore": [], 6 | "dependencies": { 7 | "angular": "1.4.9" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/buttonBgHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/buttonBgHover.png -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/disableHover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/disableHover.gif -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/disableHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/disableHover.png -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/errorIcon-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/errorIcon-sm.png -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/tabHoverLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/tabHoverLeft.png -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/tabHoverRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/tabHoverRight.png -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/tabMenuRadio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/tabMenuRadio.png -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/tabMenuTarget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/tabMenuTarget.png -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/twistyClosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/twistyClosed.png -------------------------------------------------------------------------------- /example/angular-client/bower_components/moment/src/lib/utils/abs-ceil.js: -------------------------------------------------------------------------------- 1 | export default function absCeil (number) { 2 | if (number < 0) { 3 | return Math.floor(number); 4 | } else { 5 | return Math.ceil(number); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/moment/src/lib/utils/abs-floor.js: -------------------------------------------------------------------------------- 1 | export default function absFloor (number) { 2 | if (number < 0) { 3 | return Math.ceil(number); 4 | } else { 5 | return Math.floor(number); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/lib/cache/get-stat.js: -------------------------------------------------------------------------------- 1 | var npm = require('../npm.js') 2 | var correctMkdir = require('../utils/correct-mkdir.js') 3 | 4 | module.exports = function getCacheStat (cb) { 5 | correctMkdir(npm.cache, cb) 6 | } 7 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/cmd-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 | npm-debug.log 15 | 16 | node_modules 17 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./is-implemented')() ? Symbol : require('./polyfill'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/array/#/@@iterator/shim.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('../values/shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/number/#/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | pad: require('./pad') 5 | }; 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/number/max-safe-integer/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = Math.pow(2, 53) - 1; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/object/every.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./_iterate')('every', true); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/object/for-each.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./_iterate')('forEach'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/object/some.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./_iterate')('some', false); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/array/#/@@iterator/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/array/#/copy-within/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/array/#/find-index/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/number/is-finite/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/number/is-integer/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/reg-exp/#/replace/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/reg-exp/#/search/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/string/#/@@iterator/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/string/#/contains/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/string/#/ends-with/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/string/#/normalize/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/string/#/starts-with/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/test/is-native-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t, 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/nopt/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | language: node_js 3 | node_js: 4 | - '0.8' 5 | - '0.10' 6 | - '0.12' 7 | - 'iojs' 8 | before_install: 9 | - npm install -g npm@latest 10 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/npmlog/node_modules/are-we-there-yet/node_modules/delegates/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha \ 4 | --require should \ 5 | --reporter spec \ 6 | --bail 7 | 8 | .PHONY: test -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/osenv/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | language: node_js 3 | node_js: 4 | - '0.8' 5 | - '0.10' 6 | - '0.12' 7 | - 'iojs' 8 | before_install: 9 | - npm install -g npm@latest 10 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/read-package-json/.npmignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | .*.swp 3 | 4 | .DS_Store 5 | *~ 6 | .project 7 | .settings 8 | npm-debug.log 9 | coverage.html 10 | .idea 11 | lib-cov 12 | 13 | node_modules 14 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/readable-stream/node_modules/util-deprecate/node.js: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * For Node.js, simply re-export the core `util.deprecate` function. 4 | */ 5 | 6 | module.exports = require('util').deprecate; 7 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/jodid25519/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | - "0.11" 5 | branches: 6 | only: 7 | - master 8 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/jsbn/example.js: -------------------------------------------------------------------------------- 1 | var BigInteger = require('./'); 2 | var a = new BigInteger('91823918239182398123'); 3 | console.log(a.bitLength()); -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/tar/test/cb-never-called-1.0.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/node/node_modules/npm/node_modules/tar/test/cb-never-called-1.0.1.tgz -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/packages/npm-test-blerg3/package.json: -------------------------------------------------------------------------------- 1 | { "name":"npm-test-blerg3" 2 | , "homepage": "https://github.com/npm/npm/issues/2658" 3 | , "version" : "0.0.0" 4 | , "scripts" : { "test" : "node test.js" } 5 | } 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/packages/npm-test-missing-bindir/package.json: -------------------------------------------------------------------------------- 1 | { "name":"npm-test-missing-bindir" 2 | , "version" : "0.0.0" 3 | , "scripts" : { "test" : "node test.js" } 4 | , "directories": { "bin" : "./not-found" } } 5 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/tabMenuCheckbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/tabMenuCheckbox.png -------------------------------------------------------------------------------- /example/angular-client/bower_components/moment/src/lib/units/constants.js: -------------------------------------------------------------------------------- 1 | export var YEAR = 0; 2 | export var MONTH = 1; 3 | export var DATE = 2; 4 | export var HOUR = 3; 5 | export var MINUTE = 4; 6 | export var SECOND = 5; 7 | export var MILLISECOND = 6; 8 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/fstream/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - iojs 4 | - 0.12 5 | - 0.10 6 | - 0.8 7 | before_install: 8 | - "npm config set spin false" 9 | - "npm install -g npm/npm" 10 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/gyp/buildbot/commit_queue/README: -------------------------------------------------------------------------------- 1 | cq_config.json describes the trybots that must pass in order 2 | to land a change through the commit queue. 3 | Comments are here as the file is strictly JSON. 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/error/#/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | throw: require('./throw') 5 | }; 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/number/min-safe-integer/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = -(Math.pow(2, 53) - 1); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/number/is-safe-integer/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/string/#/code-point-at/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/string/from-code-point/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./shim'); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/npmlog/node_modules/gauge/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/node/node_modules/npm/node_modules/npmlog/node_modules/gauge/example.png -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/read-package-json/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - '0.8' 4 | - '0.10' 5 | - '0.12' 6 | - 'iojs' 7 | sudo: false 8 | before_install: 9 | - npm install -g npm@latest 10 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/strip-ansi/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var ansiRegex = require('ansi-regex')(); 3 | 4 | module.exports = function (str) { 5 | return typeof str === 'string' ? str.replace(ansiRegex, '') : str; 6 | }; 7 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/angular-cookies/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular-cookies", 3 | "version": "1.4.9", 4 | "main": "./angular-cookies.js", 5 | "ignore": [], 6 | "dependencies": { 7 | "angular": "1.4.9" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/pixel_transparent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/pixel_transparent.gif -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/tabMenuTargetHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/tabMenuTargetHover.png -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/textEditorBorders.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/textEditorBorders.gif -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/textEditorBorders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/textEditorBorders.png -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/textEditorCorners.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/textEditorCorners.gif -------------------------------------------------------------------------------- /example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/textEditorCorners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/bower_components/lodash/vendor/firebug-lite/skin/xp/textEditorCorners.png -------------------------------------------------------------------------------- /example/angular-client/bower_components/moment/src/lib/locale/ordinal.js: -------------------------------------------------------------------------------- 1 | export var defaultOrdinal = '%d'; 2 | export var defaultOrdinalParse = /\d{1,2}/; 3 | 4 | export function ordinal (number) { 5 | return this._ordinal.replace('%d', number); 6 | } 7 | 8 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/bin/node-gyp-bin/node-gyp: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | if [ "x$npm_config_node_gyp" = "x" ]; then 3 | node "`dirname "$0"`/../../node_modules/node-gyp/bin/node-gyp.js" "$@" 4 | else 5 | "$npm_config_node_gyp" "$@" 6 | fi 7 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @node_modules/.bin/tape test/*.js 4 | 5 | .PHONY: test 6 | 7 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/node_modules/es6-iterator/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /node_modules 3 | /npm-debug.log 4 | /.lintcache 5 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/number/to-uint32.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (value) { return value >>> 0; }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/aws4/node_modules/lru-cache/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - '0.8' 4 | - '0.10' 5 | - '0.12' 6 | - 'iojs' 7 | before_install: 8 | - npm install -g npm@latest 9 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/jsprim/node_modules/extsprintf/examples/simple.js: -------------------------------------------------------------------------------- 1 | var mod_extsprintf = require('extsprintf'); 2 | console.log(mod_extsprintf.sprintf('hello %25s', 'world')); 3 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/lib/utils/temp-filename.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | var uniqueFilename = require('unique-filename') 3 | var npm = require('../npm.js') 4 | 5 | module.exports = function (prefix) { 6 | return uniqueFilename(npm.tmp, prefix) 7 | } 8 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/minimatch/node_modules/lru-cache/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - '0.8' 4 | - '0.10' 5 | - '0.12' 6 | - 'iojs' 7 | before_install: 8 | - npm install -g npm@latest 9 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/boolean/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | isBoolean: require('./is-boolean') 5 | }; 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/npm-registry-client/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 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/hawk/images/hawk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/node/node_modules/npm/node_modules/request/node_modules/hawk/images/hawk.png -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/hawk/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/node/node_modules/npm/node_modules/request/node_modules/hawk/images/logo.png -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/stringstream/.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 -------------------------------------------------------------------------------- /example/angular-client/bower_components/animate.css/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "animate.css", 3 | "main": "./animate.css", 4 | "ignore": [ 5 | ".*", 6 | "src", 7 | "*.yml", 8 | "Gemfile", 9 | "Gemfile.lock", 10 | "*.md" 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/moment/src/lib/create/local.js: -------------------------------------------------------------------------------- 1 | import { createLocalOrUTC } from './from-anything'; 2 | 3 | export function createLocal (input, format, locale, strict) { 4 | return createLocalOrUTC(input, format, locale, strict, false); 5 | } 6 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/moment/src/lib/create/utc.js: -------------------------------------------------------------------------------- 1 | import { createLocalOrUTC } from './from-anything'; 2 | 3 | export function createUTC (input, format, locale, strict) { 4 | return createLocalOrUTC(input, format, locale, strict, true).utc(); 5 | } 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/init-package-json/node_modules/promzard/test/exports.input: -------------------------------------------------------------------------------- 1 | exports.a = 1 + 2 2 | exports.b = prompt('To be or not to be?', '!2b') 3 | exports.c = {} 4 | exports.c.x = prompt() 5 | exports.c.y = tmpdir + "/y/file.txt" 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/npmlog/node_modules/are-we-there-yet/node_modules/delegates/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha \ 4 | --require should \ 5 | --reporter spec \ 6 | --bail 7 | 8 | .PHONY: test -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/read-installed/test/fixtures/grandparent-peer/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "example", 3 | "version": "0.0.0", 4 | "dependencies": { 5 | "plugin-wrapper": "0.0.0", 6 | "framework": "0.0.0" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/packages/npm-test-array-bin/test.js: -------------------------------------------------------------------------------- 1 | require('child_process').exec('array-bin', { env: process.env }, 2 | function (err) { 3 | if (err && err.code) throw new Error('exited badly with code = ' + err.code) 4 | } 5 | ) 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/config-chain/test/broken.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | var cc = require('..') 4 | var assert = require('assert') 5 | 6 | 7 | //throw on invalid json 8 | assert.throws(function () { 9 | cc(__dirname + '/broken.json') 10 | }) 11 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/object/find-key.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./_iterate')(require('../array/#/find'), false); 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/array/of/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/global.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { 4 | a.ok(t && typeof t === 'object'); 5 | }; 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/read-installed/test/fixtures/grandparent-peer-dev/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "example", 3 | "version": "0.0.0", 4 | "devDependencies": { 5 | "plugin-wrapper": "0.0.0", 6 | "framework": "0.0.0" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/read-package-json/node_modules/json-parse-helpfulerror/node_modules/jju/.npmignore: -------------------------------------------------------------------------------- 1 | package.json 2 | node_modules 3 | test 4 | benchmark 5 | docs 6 | examples 7 | /.editorconfig 8 | /.eslint* 9 | /.travis.yml 10 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/forever-agent/README.md: -------------------------------------------------------------------------------- 1 | forever-agent 2 | ============= 3 | 4 | HTTP Agent that keeps socket connections alive between keep-alive requests. Formerly part of mikeal/request, now a standalone module. 5 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/write-file-atomic/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: false 3 | before_install: 4 | - "npm -g install npm" 5 | node_js: 6 | - "0.8" 7 | - "0.10" 8 | - "0.12" 9 | - "iojs" 10 | - "4" 11 | - "5" 12 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/tap/zz-cleanup.js: -------------------------------------------------------------------------------- 1 | var common = require('../common-tap') 2 | var test = require('tap').test 3 | var rimraf = require('rimraf') 4 | 5 | test('cleanup', function (t) { 6 | rimraf.sync(common.npm_config_cache) 7 | t.end() 8 | }) 9 | -------------------------------------------------------------------------------- /example/angular-client/bower_components/animate.css/source/attention_seekers/flash.css: -------------------------------------------------------------------------------- 1 | @keyframes flash { 2 | from, 50%, 100% { 3 | opacity: 1; 4 | } 5 | 6 | 25%, 75% { 7 | opacity: 0; 8 | } 9 | } 10 | 11 | .flash { 12 | animation-name: flash; 13 | } 14 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/d/.lint: -------------------------------------------------------------------------------- 1 | @root 2 | 3 | es5 4 | module 5 | 6 | tabs 7 | indent 2 8 | maxlen 80 9 | 10 | ass 11 | nomen 12 | plusplus 13 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/function/constant.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (x) { 4 | return function () { return x; }; 5 | }; 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/array/#/fill/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/array/#/find/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/array/#/keys/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/array/#/map/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/array/#/slice/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/array/_is-extensible.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { 4 | a(typeof t, 'boolean'); 5 | }; 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/array/from/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/math/acosh/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/math/asinh/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/math/atanh/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/math/cbrt/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/math/clz32/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/math/cosh/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/math/expm1/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/math/fround/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/math/hypot/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/math/imul/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/math/log10/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/math/log1p/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/math/log2/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/math/sign/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/math/sinh/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/math/tanh/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/math/trunc/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/number/epsilon/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { 4 | a(typeof t, 'number'); 5 | }; 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/number/is-nan/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/object/assign/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/object/keys/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/string/#/normalize/_data.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t[0], 'object'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/string/raw/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/har-validator/lib/schemas/har.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "object", 3 | "required": [ 4 | "log" 5 | ], 6 | "properties": { 7 | "log": { 8 | "$ref": "#log" 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/test/packages/npm-test-dir-bin/test.js: -------------------------------------------------------------------------------- 1 | require('child_process').exec('dir-bin', { stdio: 'pipe', env: process.env }, 2 | function (err) { 3 | if (err && err.code) throw new Error('exited badly with code = ' + err.code) 4 | } 5 | ) 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/fs-write-stream-atomic/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: false 3 | before_install: 4 | - "npm -g install npm" 5 | node_js: 6 | - "0.8" 7 | - "0.10" 8 | - "0.12" 9 | - "iojs" 10 | - "4" 11 | - "5" 12 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/init-package-json/node_modules/promzard/test/simple.input: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | "a": 1 + 2, 3 | "b": prompt('To be or not to be?', '!2b'), 4 | "c": { 5 | "x": prompt(), 6 | "y": tmpdir + "/y/file.txt" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/number/is-nan/shim.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (value) { return (value !== value); } //jslint: ignore 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/object/is-number-value.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (value) { return (value != null) && !isNaN(value); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/array/#/@@iterator/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/array/#/concat/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/array/#/entries/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/array/#/filter/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/array/#/find-index/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/array/#/splice/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/array/#/values/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/function/identity.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var o = {}; 4 | 5 | module.exports = function (t, a) { 6 | a(t(o), o); 7 | }; 8 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/function/noop.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { 4 | a(typeof t(1, 2, 3), 'undefined'); 5 | }; 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/number/epsilon/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/number/is-finite/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/number/is-integer/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/reg-exp/#/match/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/reg-exp/#/replace/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/reg-exp/#/search/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/reg-exp/#/split/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/reg-exp/#/sticky/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/reg-exp/#/unicode/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/string/#/contains/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/string/#/ends-with/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/string/#/normalize/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/string/#/repeat/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/npm-registry-client/node_modules/retry/equation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannikkala/liferay-javascript-portlet/HEAD/example/angular-client/node/node_modules/npm/node_modules/npm-registry-client/node_modules/retry/equation.gif -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/readable-stream/node_modules/process-nextick-args/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | - "0.11" 6 | - "0.12" 7 | - "1.7.1" 8 | - 1 9 | - 2 10 | - 3 11 | - 4 12 | - 5 13 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/qs/lib/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var Stringify = require('./stringify'); 4 | var Parse = require('./parse'); 5 | 6 | module.exports = { 7 | stringify: Stringify, 8 | parse: Parse 9 | }; 10 | -------------------------------------------------------------------------------- /example/angular-client/src/app/index.constants.js: -------------------------------------------------------------------------------- 1 | /* global malarkey:false, moment:false */ 2 | (function() { 3 | 'use strict'; 4 | 5 | angular 6 | .module('pocAngularClient') 7 | .constant('malarkey', malarkey) 8 | .constant('moment', moment); 9 | 10 | })(); 11 | -------------------------------------------------------------------------------- /js-portlet/src/main/webapp/WEB-INF/liferay-plugin-package.properties: -------------------------------------------------------------------------------- 1 | name=JavaScript Portlet 2 | module-group-id=JavaScript 3 | module-incremental-version=1 4 | tags= 5 | short-description=js-portlet 6 | change-log= 7 | page-url=http://www.liferay.com 8 | author=Liferay, Inc. 9 | licenses=LGPL -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/gyp/gyp.bat: -------------------------------------------------------------------------------- 1 | @rem Copyright (c) 2009 Google Inc. All rights reserved. 2 | @rem Use of this source code is governed by a BSD-style license that can be 3 | @rem found in the LICENSE file. 4 | 5 | @python "%~dp0gyp_main.py" %* 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/array/from/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./is-implemented')() 4 | ? Array.from 5 | : require('./shim'); 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/array/of/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./is-implemented')() 4 | ? Array.of 5 | : require('./shim'); 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/math/acosh/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./is-implemented')() 4 | ? Math.acosh 5 | : require('./shim'); 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/math/asinh/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./is-implemented')() 4 | ? Math.asinh 5 | : require('./shim'); 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/math/atanh/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./is-implemented')() 4 | ? Math.atanh 5 | : require('./shim'); 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/math/cbrt/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./is-implemented')() 4 | ? Math.cbrt 5 | : require('./shim'); 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/math/clz32/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./is-implemented')() 4 | ? Math.clz32 5 | : require('./shim'); 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/math/cosh/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./is-implemented')() 4 | ? Math.cosh 5 | : require('./shim'); 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/math/expm1/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./is-implemented')() 4 | ? Math.expm1 5 | : require('./shim'); 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/math/hypot/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./is-implemented')() 4 | ? Math.hypot 5 | : require('./shim'); 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/math/imul/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./is-implemented')() 4 | ? Math.imul 5 | : require('./shim'); 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/math/log10/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./is-implemented')() 4 | ? Math.log10 5 | : require('./shim'); 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/math/log1p/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./is-implemented')() 4 | ? Math.log1p 5 | : require('./shim'); 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/math/log2/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./is-implemented')() 4 | ? Math.log2 5 | : require('./shim'); 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/math/sign/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./is-implemented')() 4 | ? Math.sign 5 | : require('./shim'); 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/math/sinh/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./is-implemented')() 4 | ? Math.sinh 5 | : require('./shim'); 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/math/tanh/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./is-implemented')() 4 | ? Math.tanh 5 | : require('./shim'); 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/math/trunc/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./is-implemented')() 4 | ? Math.trunc 5 | : require('./shim'); 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/string/raw/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./is-implemented')() 4 | ? String.raw 5 | : require('./shim'); 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/array/#/copy-within/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/function/constant.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var o = {}; 4 | 5 | module.exports = function (t, a) { 6 | a(t(o)(), o); 7 | }; 8 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/number/is-safe-integer/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/number/max-safe-integer/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { 4 | a(typeof t, 'number'); 5 | }; 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/number/max-safe-integer/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/number/min-safe-integer/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { 4 | a(typeof t, 'number'); 5 | }; 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/number/min-safe-integer/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/object/set-prototype-of/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/reg-exp/#/search/shim.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { 4 | a(t.call(/foo/, 'barfoo'), 3); 5 | }; 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/string/#/@@iterator/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/string/#/code-point-at/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/string/#/starts-with/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/string/from-code-point/is-implemented.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (t, a) { a(typeof t(), 'boolean'); }; 4 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/request/node_modules/bl/.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | language: node_js 3 | node_js: 4 | - '0.10' 5 | - node 6 | - iojs 7 | branches: 8 | only: 9 | - master 10 | notifications: 11 | email: 12 | - rod@vagg.org 13 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/text-table/example/align.js: -------------------------------------------------------------------------------- 1 | var table = require('../'); 2 | var t = table([ 3 | [ 'beep', '1024' ], 4 | [ 'boop', '33450' ], 5 | [ 'foo', '1006' ], 6 | [ 'bar', '45' ] 7 | ], { align: [ 'l', 'r' ] }); 8 | console.log(t); 9 | -------------------------------------------------------------------------------- /example/angular-client/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "eslint:recommended", 3 | "plugins": ["angular"], 4 | "env": { 5 | "browser": true, 6 | "jasmine": true 7 | }, 8 | "globals": { 9 | "angular": true, 10 | "module": true, 11 | "inject": true 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/gyp/samples/samples.bat: -------------------------------------------------------------------------------- 1 | @rem Copyright (c) 2009 Google Inc. All rights reserved. 2 | @rem Use of this source code is governed by a BSD-style license that can be 3 | @rem found in the LICENSE file. 4 | 5 | @python %~dp0/samples %* 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/math/fround/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./is-implemented')() 4 | ? Math.fround 5 | : require('./shim'); 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/number/is-nan/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./is-implemented')() 4 | ? Number.isNaN 5 | : require('./shim'); 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/object/is-callable.js: -------------------------------------------------------------------------------- 1 | // Deprecated 2 | 3 | 'use strict'; 4 | 5 | module.exports = function (obj) { return typeof obj === 'function'; }; 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/object/keys/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./is-implemented')() 4 | ? Object.keys 5 | : require('./shim'); 6 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/scripts/update-authors.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | git log --reverse --format='%aN <%aE>' | perl -wnE ' 4 | BEGIN { 5 | say "# Authors sorted by whether or not they\x27re me"; 6 | } 7 | 8 | print $seen{$_} = $_ unless $seen{$_} 9 | ' > AUTHORS 10 | -------------------------------------------------------------------------------- /example/angular-client/node/node_modules/npm/lib/install/access-error.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | module.exports = function (dir, er) { 3 | if (!er) return 4 | var accessEr = new Error("EACCES, access '" + dir + "'", -13) 5 | accessEr.code = 'EACCES' 6 | accessEr.path = dir 7 | return accessEr 8 | } 9 | --------------------------------------------------------------------------------