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.
56 lines (55 loc) • 1.43 kB
JSON
{
"name": "nuclide-working-sets",
"repository": "https://github.com/facebook/nuclide",
"main": "./lib/main.js",
"version": "0.0.0",
"description": "Service for the definition of an overlay filtering layer on top of connected projects.",
"atomTestRunner": "../../lib/test-runner.js",
"nuclide": {
"packageType": "Atom",
"testRunner": "apm",
"configMetadata": {
"pathComponents": [
"IDE",
"Working Sets"
]
},
"config": {
"workingSets": {
"title": "Working sets",
"type": "array",
"description": "Array where each item defines a working set with all its included items",
"default": [],
"items": {
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string"
},
"active": {
"title": "Active",
"type": "boolean",
"default": false
},
"uris": {
"type": "array",
"title": "URIs",
"description": "The array of URIs to items included in the working set",
"items": {
"type": "string"
}
}
}
}
}
}
},
"providedServices": {
"working-sets.provider": {
"versions": {
"0.0.0": "provideWorkingSetsStore"
}
}
}
}