├── .gitignore ├── History.md ├── LICENSE ├── README.md ├── app ├── assets │ ├── demo.gif │ ├── images │ │ ├── jq.svg │ │ ├── js.svg │ │ └── no-filter.png │ └── logos │ │ ├── logo.png │ │ ├── mac-logo.icns │ │ └── windows-logo.ico ├── css │ ├── structure.css │ └── ui.css ├── js │ ├── App.js │ ├── Editor.js │ ├── Output.js │ ├── Settings.js │ ├── Tab.js │ ├── Tabs.js │ └── system │ │ ├── MainMenu.js │ │ ├── codemirror │ │ └── json5-lint.js │ │ ├── default-tab.js │ │ ├── start.js │ │ └── welcome-message.js ├── tests │ └── App.spec.js └── vendor │ └── jquery-ui │ ├── AUTHORS.txt │ ├── LICENSE.txt │ ├── external │ └── jquery │ │ └── jquery.js │ ├── images │ ├── ui-icons_444444_256x240.png │ ├── ui-icons_555555_256x240.png │ ├── ui-icons_777620_256x240.png │ ├── ui-icons_777777_256x240.png │ ├── ui-icons_cc0000_256x240.png │ └── ui-icons_ffffff_256x240.png │ ├── index.html │ ├── jquery-ui.css │ ├── jquery-ui.js │ ├── jquery-ui.min.css │ ├── jquery-ui.min.js │ ├── jquery-ui.structure.css │ ├── jquery-ui.structure.min.css │ ├── jquery-ui.theme.css │ ├── jquery-ui.theme.min.css │ └── package.json ├── bin ├── install └── jsplora ├── eslintrc.json ├── index.html ├── index.js ├── jasmine.json └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/.gitignore -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/History.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/README.md -------------------------------------------------------------------------------- /app/assets/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/app/assets/demo.gif -------------------------------------------------------------------------------- /app/assets/images/jq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/app/assets/images/jq.svg -------------------------------------------------------------------------------- /app/assets/images/js.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/app/assets/images/js.svg -------------------------------------------------------------------------------- /app/assets/images/no-filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/app/assets/images/no-filter.png -------------------------------------------------------------------------------- /app/assets/logos/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/app/assets/logos/logo.png -------------------------------------------------------------------------------- /app/assets/logos/mac-logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/app/assets/logos/mac-logo.icns -------------------------------------------------------------------------------- /app/assets/logos/windows-logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/app/assets/logos/windows-logo.ico -------------------------------------------------------------------------------- /app/css/structure.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/app/css/structure.css -------------------------------------------------------------------------------- /app/css/ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/app/css/ui.css -------------------------------------------------------------------------------- /app/js/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/app/js/App.js -------------------------------------------------------------------------------- /app/js/Editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/app/js/Editor.js -------------------------------------------------------------------------------- /app/js/Output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/app/js/Output.js -------------------------------------------------------------------------------- /app/js/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/app/js/Settings.js -------------------------------------------------------------------------------- /app/js/Tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/app/js/Tab.js -------------------------------------------------------------------------------- /app/js/Tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/app/js/Tabs.js -------------------------------------------------------------------------------- /app/js/system/MainMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/app/js/system/MainMenu.js -------------------------------------------------------------------------------- /app/js/system/codemirror/json5-lint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/app/js/system/codemirror/json5-lint.js -------------------------------------------------------------------------------- /app/js/system/default-tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/app/js/system/default-tab.js -------------------------------------------------------------------------------- /app/js/system/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/app/js/system/start.js -------------------------------------------------------------------------------- /app/js/system/welcome-message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/app/js/system/welcome-message.js -------------------------------------------------------------------------------- /app/tests/App.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/app/tests/App.spec.js -------------------------------------------------------------------------------- /app/vendor/jquery-ui/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/app/vendor/jquery-ui/AUTHORS.txt -------------------------------------------------------------------------------- /app/vendor/jquery-ui/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/app/vendor/jquery-ui/LICENSE.txt -------------------------------------------------------------------------------- /app/vendor/jquery-ui/external/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/app/vendor/jquery-ui/external/jquery/jquery.js -------------------------------------------------------------------------------- /app/vendor/jquery-ui/images/ui-icons_444444_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/app/vendor/jquery-ui/images/ui-icons_444444_256x240.png -------------------------------------------------------------------------------- /app/vendor/jquery-ui/images/ui-icons_555555_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/app/vendor/jquery-ui/images/ui-icons_555555_256x240.png -------------------------------------------------------------------------------- /app/vendor/jquery-ui/images/ui-icons_777620_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/app/vendor/jquery-ui/images/ui-icons_777620_256x240.png -------------------------------------------------------------------------------- /app/vendor/jquery-ui/images/ui-icons_777777_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/app/vendor/jquery-ui/images/ui-icons_777777_256x240.png -------------------------------------------------------------------------------- /app/vendor/jquery-ui/images/ui-icons_cc0000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/app/vendor/jquery-ui/images/ui-icons_cc0000_256x240.png -------------------------------------------------------------------------------- /app/vendor/jquery-ui/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/app/vendor/jquery-ui/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /app/vendor/jquery-ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/app/vendor/jquery-ui/index.html -------------------------------------------------------------------------------- /app/vendor/jquery-ui/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/app/vendor/jquery-ui/jquery-ui.css -------------------------------------------------------------------------------- /app/vendor/jquery-ui/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/app/vendor/jquery-ui/jquery-ui.js -------------------------------------------------------------------------------- /app/vendor/jquery-ui/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/app/vendor/jquery-ui/jquery-ui.min.css -------------------------------------------------------------------------------- /app/vendor/jquery-ui/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/app/vendor/jquery-ui/jquery-ui.min.js -------------------------------------------------------------------------------- /app/vendor/jquery-ui/jquery-ui.structure.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/app/vendor/jquery-ui/jquery-ui.structure.css -------------------------------------------------------------------------------- /app/vendor/jquery-ui/jquery-ui.structure.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/app/vendor/jquery-ui/jquery-ui.structure.min.css -------------------------------------------------------------------------------- /app/vendor/jquery-ui/jquery-ui.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/app/vendor/jquery-ui/jquery-ui.theme.css -------------------------------------------------------------------------------- /app/vendor/jquery-ui/jquery-ui.theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/app/vendor/jquery-ui/jquery-ui.theme.min.css -------------------------------------------------------------------------------- /app/vendor/jquery-ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/app/vendor/jquery-ui/package.json -------------------------------------------------------------------------------- /bin/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/bin/install -------------------------------------------------------------------------------- /bin/jsplora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/bin/jsplora -------------------------------------------------------------------------------- /eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/eslintrc.json -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/index.js -------------------------------------------------------------------------------- /jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/jasmine.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wellsjo/JSON-Splora/HEAD/package.json --------------------------------------------------------------------------------