This commit is contained in:
plane000
2018-09-02 17:47:00 +01:00
parent f2ef456bf5
commit 9ed69a60eb
52 changed files with 4343 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
{
"name": "negative-spacing",
"displayName": "Negative spacing",
"description": "spacing, but negative",
"version": "0.0.1",
"publisher": "Ben",
"engines": {
"vscode": "^1.26.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.sayHello"
],
"main": "./extension",
"contributes": {
"commands": [
{
"command": "extension.sayHello",
"title": "Hello World"
}
]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.6.1",
"vscode": "^1.1.21",
"eslint": "^4.11.0",
"@types/node": "^8.10.25",
"@types/mocha": "^2.2.42"
}
}