-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Gamunu Balagalla
committed
Jan 24, 2018
1 parent
3c9b8a2
commit fa6d9b1
Showing
1 changed file
with
138 additions
and
138 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,141 +1,141 @@ | ||
{ | ||
"name": "vscode-yarn", | ||
"displayName": "yarn", | ||
"description": "yarn commands for VSCode", | ||
"version": "1.3.0", | ||
"publisher": "gamunu", | ||
"icon": "yarn_icon.png", | ||
"engines": { | ||
"vscode": "^1.19.0" | ||
}, | ||
"categories": [ | ||
"Other" | ||
], | ||
"license": "SEE LICENSE IN LICENSE.md", | ||
"bugs": { | ||
"url": "https://github.com/gamunu/vscode-yarn/issues" | ||
}, | ||
"homepage": "https://github.com/gamunu/vscode-yarn/blob/master/README.md", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/gamunu/vscode-yarn.git" | ||
}, | ||
"activationEvents": [ | ||
"onCommand:yarn-script.installPackages", | ||
"onCommand:yarn-script.addPackages", | ||
"onCommand:yarn-script.addPackage", | ||
"onCommand:yarn-script.addPackageDev", | ||
"onCommand:yarn-script.runScript", | ||
"onCommand:yarn-script.runScriptLast", | ||
"onCommand:yarn-script.init", | ||
"onCommand:yarn-script.removePackage", | ||
"onCommand:yarn-script.publish", | ||
"onCommand:yarn-script.raw", | ||
"onCommand:yarn-script.terminate", | ||
"onCommand:yarn-script.start", | ||
"onCommand:yarn-script.test" | ||
], | ||
"main": "./out/extension", | ||
"contributes": { | ||
"commands": [ | ||
{ | ||
"command": "yarn-script.start", | ||
"title": "Start", | ||
"category": "Yarn" | ||
}, | ||
{ | ||
"command": "yarn-script.test", | ||
"title": "Test", | ||
"category": "Yarn" | ||
}, | ||
{ | ||
"command": "yarn-script.terminate", | ||
"title": "Terminate Running Yarn Script", | ||
"category": "Yarn" | ||
}, | ||
{ | ||
"command": "yarn-script.installPackages", | ||
"title": "Install Packages", | ||
"category": "Yarn" | ||
}, | ||
{ | ||
"command": "yarn-script.addPackage", | ||
"title": "Add and Save Dependency", | ||
"category": "Yarn" | ||
}, | ||
{ | ||
"command": "yarn-script.addPackageDev", | ||
"title": "Add and Save dev. Dependency", | ||
"category": "Yarn" | ||
}, | ||
{ | ||
"command": "yarn-script.runScript", | ||
"title": "Run Yarn Script", | ||
"category": "Yarn" | ||
}, | ||
{ | ||
"command": "yarn-script.runScriptLast", | ||
"title": "Run Last Yarn Script", | ||
"category": "Yarn" | ||
}, | ||
{ | ||
"command": "yarn-script.init", | ||
"title": "Initialize Yarn Package", | ||
"category": "Yarn" | ||
}, | ||
{ | ||
"command": "yarn-script.removePackage", | ||
"title": "Uninstall Dependency", | ||
"category": "Yarn" | ||
}, | ||
{ | ||
"command": "yarn-script.publish", | ||
"title": "Publish Package", | ||
"category": "Yarn" | ||
}, | ||
{ | ||
"command": "yarn-script.raw", | ||
"title": "Raw Yarn Command", | ||
"category": "Yarn" | ||
} | ||
] | ||
}, | ||
"configuration": { | ||
"type": "object", | ||
"title": "yarn VSCode Yarn", | ||
"properties": { | ||
"yarn.runInTerminal": { | ||
"type": "boolean", | ||
"default": false, | ||
"description": "Run yarn commands in a terminal, otherwise shows the output in the output panel" | ||
}, | ||
"yarn.bin": { | ||
"type": "string", | ||
"default": "yarn", | ||
"description": "yarn bin name" | ||
}, | ||
"yarn.dontHideOutputOnSuccess": { | ||
"type": "boolean", | ||
"default": false, | ||
"description": "Keep the output panel visible when yarn execution is successful (no effect with runInTerminal)" | ||
} | ||
"name": "vscode-yarn", | ||
"displayName": "yarn", | ||
"description": "yarn commands for VSCode", | ||
"version": "1.4.0", | ||
"publisher": "gamunu", | ||
"icon": "yarn_icon.png", | ||
"engines": { | ||
"vscode": "^1.19.0" | ||
}, | ||
"categories": [ | ||
"Other" | ||
], | ||
"license": "SEE LICENSE IN LICENSE.md", | ||
"bugs": { | ||
"url": "https://github.com/gamunu/vscode-yarn/issues" | ||
}, | ||
"homepage": "https://github.com/gamunu/vscode-yarn/blob/master/README.md", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/gamunu/vscode-yarn.git" | ||
}, | ||
"activationEvents": [ | ||
"onCommand:yarn-script.installPackages", | ||
"onCommand:yarn-script.addPackages", | ||
"onCommand:yarn-script.addPackage", | ||
"onCommand:yarn-script.addPackageDev", | ||
"onCommand:yarn-script.runScript", | ||
"onCommand:yarn-script.runScriptLast", | ||
"onCommand:yarn-script.init", | ||
"onCommand:yarn-script.removePackage", | ||
"onCommand:yarn-script.publish", | ||
"onCommand:yarn-script.raw", | ||
"onCommand:yarn-script.terminate", | ||
"onCommand:yarn-script.start", | ||
"onCommand:yarn-script.test" | ||
], | ||
"main": "./out/extension", | ||
"contributes": { | ||
"commands": [ | ||
{ | ||
"command": "yarn-script.start", | ||
"title": "Start", | ||
"category": "Yarn" | ||
}, | ||
{ | ||
"command": "yarn-script.test", | ||
"title": "Test", | ||
"category": "Yarn" | ||
}, | ||
{ | ||
"command": "yarn-script.terminate", | ||
"title": "Terminate Running Yarn Script", | ||
"category": "Yarn" | ||
}, | ||
{ | ||
"command": "yarn-script.installPackages", | ||
"title": "Install Packages", | ||
"category": "Yarn" | ||
}, | ||
{ | ||
"command": "yarn-script.addPackage", | ||
"title": "Add and Save Dependency", | ||
"category": "Yarn" | ||
}, | ||
{ | ||
"command": "yarn-script.addPackageDev", | ||
"title": "Add and Save dev. Dependency", | ||
"category": "Yarn" | ||
}, | ||
{ | ||
"command": "yarn-script.runScript", | ||
"title": "Run Yarn Script", | ||
"category": "Yarn" | ||
}, | ||
{ | ||
"command": "yarn-script.runScriptLast", | ||
"title": "Run Last Yarn Script", | ||
"category": "Yarn" | ||
}, | ||
{ | ||
"command": "yarn-script.init", | ||
"title": "Initialize Yarn Package", | ||
"category": "Yarn" | ||
}, | ||
{ | ||
"command": "yarn-script.removePackage", | ||
"title": "Uninstall Dependency", | ||
"category": "Yarn" | ||
}, | ||
{ | ||
"command": "yarn-script.publish", | ||
"title": "Publish Package", | ||
"category": "Yarn" | ||
}, | ||
{ | ||
"command": "yarn-script.raw", | ||
"title": "Raw Yarn Command", | ||
"category": "Yarn" | ||
} | ||
] | ||
}, | ||
"configuration": { | ||
"type": "object", | ||
"title": "yarn VSCode Yarn", | ||
"properties": { | ||
"yarn.runInTerminal": { | ||
"type": "boolean", | ||
"default": false, | ||
"description": "Run yarn commands in a terminal, otherwise shows the output in the output panel" | ||
}, | ||
"yarn.bin": { | ||
"type": "string", | ||
"default": "yarn", | ||
"description": "yarn bin name" | ||
}, | ||
"yarn.dontHideOutputOnSuccess": { | ||
"type": "boolean", | ||
"default": false, | ||
"description": "Keep the output panel visible when yarn execution is successful (no effect with runInTerminal)" | ||
} | ||
} | ||
}, | ||
"scripts": { | ||
"vscode:prepublish": "npm run compile", | ||
"compile": "tsc -p ./", | ||
"watch": "tsc -watch -p ./", | ||
"postinstall": "node ./node_modules/vscode/bin/install" | ||
}, | ||
"devDependencies": { | ||
"typescript": "^2.6.1", | ||
"vscode": "^1.1.6", | ||
"@types/node": "^7.0.43", | ||
"@types/mocha": "^2.2.42" | ||
}, | ||
"dependencies": { | ||
"global": "^4.3.2", | ||
"tree-kill": "^1.2.0", | ||
"run-in-terminal": "^0.0.3" | ||
} | ||
}, | ||
"scripts": { | ||
"vscode:prepublish": "npm run compile", | ||
"compile": "tsc -p ./", | ||
"watch": "tsc -watch -p ./", | ||
"postinstall": "node ./node_modules/vscode/bin/install" | ||
}, | ||
"devDependencies": { | ||
"typescript": "^2.6.1", | ||
"vscode": "^1.1.6", | ||
"@types/node": "^7.0.43", | ||
"@types/mocha": "^2.2.42" | ||
}, | ||
"dependencies": { | ||
"global": "^4.3.2", | ||
"tree-kill": "^1.2.0", | ||
"run-in-terminal": "^0.0.3" | ||
} | ||
} |