UNPKG

atom-nuclide

Version:

A unified developer experience for web and mobile development, built as a suite of features on top of Atom to provide hackability and the support of an active community.

69 lines (68 loc) 1.88 kB
{ "name": "nuclide-file-tree", "repository": "https://github.com/facebook/nuclide", "main": "./lib/main.js", "version": "0.0.0", "description": "Provides the new file tree panel for Nuclide", "consumedServices": { "nuclide-current-working-directory": { "versions": { "0.0.0": "consumeCwdApi" } }, "nuclide-side-bar": { "versions": { "1.0.0": "consumeNuclideSideBar" } }, "working-sets.provider": { "versions": { "0.0.0": "consumeWorkingSetsStore" } } }, "providedServices": { "nuclide-file-tree.context-menu": { "versions": { "0.1.0": "getContextMenuForFileTree" } } }, "atomTestRunner": "../../lib/test-runner.js", "nuclide": { "configMetadata": { "pathComponents": [ "IDE", "File Tree" ] }, "config": { "revealFileOnSwitch": { "title": "Reveal File on Switch", "type": "boolean", "default": false, "description": "Automatically reveal the current file when you switch tabs" }, "hideIgnoredNames": { "title": "Hide Ignored Names", "type": "boolean", "default": true, "description": "Hide paths that match the \"Ignored Names\" under \"Settings > Core Settings\"" }, "allowKeyboardPrefixNavigation": { "title": "Enable prefix-based keyboard navigation", "type": "boolean", "default": true, "description": "Allows using the keyboard to navigate to a sibling node matching a prefix string" }, "showOpenFiles": { "title": "Show open files", "type": "boolean", "default": true, "description": "Display a list of currently opened files in the top section of the tree" } }, "packageType": "Atom", "testRunner": "apm" } }