Skip to content

Instantly share code, notes, and snippets.

@beerose
Created February 2, 2019 20:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save beerose/22a3dcdc1d36ddd06999ed48b6fd402a to your computer and use it in GitHub Desktop.
Save beerose/22a3dcdc1d36ddd06999ed48b6fd402a to your computer and use it in GitHub Desktop.
{
"name": "test",
"displayName": "test",
"description": "",
"version": "0.0.1",
"publisher": "aleksandra",
"engines": {
"vscode": "^1.30.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "extension.sayHello",
"title": "Hello World"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.6.1",
"vscode": "^1.1.6",
"@types/node": "^7.0.43",
"@types/mocha": "^2.2.42"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment