{ "name": "print-references", "displayName": "(Sample) Print references", "description": "Show the results of the Find References feature as formatted text in an editor", "version": "0.0.1", "publisher": "jrieken", "engines": { "vscode": "^1.0.0" }, "categories": [ "Other" ], "activationEvents": [ "onCommand:editor.printReferences" ], "main": "./out/extension", "contributes": { "commands": [ { "command": "editor.printReferences", "title": "Print References" } ], "languages": [ { "id": "locations", "extensions": [ ".locations" ] } ], "grammars": [ { "language": "locations", "path": "./locations-syntax.json", "scopeName": "source.locations" } ] }, "scripts": { "vscode:prepublish": "node ./node_modules/vscode/bin/compile", "compile": "node ./node_modules/vscode/bin/compile -watch -p ./", "postinstall": "node ./node_modules/vscode/bin/install" }, "devDependencies": { "tslint": "^3.8.1", "typescript": "^1.8.5", "vscode": "^0.11.0" } }