Created
February 2, 2019 20:05
-
-
Save beerose/22a3dcdc1d36ddd06999ed48b6fd402a to your computer and use it in GitHub Desktop.
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
{ | |
"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