2021-03-19 02:22:55 +03:00
|
|
|
{
|
2021-03-22 02:27:33 +03:00
|
|
|
"name": "gotools",
|
2021-03-22 05:17:45 +03:00
|
|
|
"displayName": "Golang Tools",
|
2021-03-22 02:27:33 +03:00
|
|
|
"description": "Tools for productive work",
|
2021-03-28 03:20:22 +03:00
|
|
|
"version": "0.0.5",
|
2021-03-22 02:27:33 +03:00
|
|
|
"publisher": "neonxp",
|
2021-03-28 03:20:22 +03:00
|
|
|
"license": "GPL-3.0-or-later",
|
2021-03-22 02:27:33 +03:00
|
|
|
"author": {
|
|
|
|
"name": "Alexander NeonXP Kiryukhin",
|
|
|
|
"email": "a.kiryukhin@mail.ru",
|
|
|
|
"url": "https://neonxp.ru/"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/neonxp/GoTools"
|
|
|
|
},
|
|
|
|
"icon": "icon.png",
|
|
|
|
"categories": [
|
|
|
|
"Programming Languages",
|
|
|
|
"Snippets",
|
|
|
|
"Other"
|
|
|
|
],
|
|
|
|
"keywords": [
|
|
|
|
"go",
|
|
|
|
"golang"
|
|
|
|
],
|
|
|
|
"engines": {
|
|
|
|
"vscode": "^1.54.0"
|
|
|
|
},
|
|
|
|
"main": "./out/extension.js",
|
|
|
|
"activationEvents": [
|
|
|
|
"onLanguage:go"
|
|
|
|
],
|
|
|
|
"contributes": {
|
|
|
|
"snippets": [
|
|
|
|
{
|
|
|
|
"language": "go",
|
|
|
|
"path": "./snippets/snippets.json"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"vscode:prepublish": "npm run compile",
|
|
|
|
"compile": "tsc -p ./",
|
|
|
|
"watch": "tsc -watch -p ./",
|
|
|
|
"pretest": "npm run compile && npm run lint",
|
|
|
|
"lint": "eslint src --ext ts",
|
|
|
|
"test": "node ./out/test/runTest.js"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/vscode": "^1.54.0",
|
|
|
|
"@types/glob": "^7.1.3",
|
|
|
|
"@types/mocha": "^8.0.4",
|
|
|
|
"@types/node": "^12.11.7",
|
|
|
|
"eslint": "^7.19.0",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^4.14.1",
|
|
|
|
"@typescript-eslint/parser": "^4.14.1",
|
|
|
|
"glob": "^7.1.6",
|
|
|
|
"mocha": "^8.2.1",
|
|
|
|
"typescript": "^4.1.3",
|
|
|
|
"vscode-test": "^1.5.0"
|
|
|
|
}
|
2021-03-19 02:22:55 +03:00
|
|
|
}
|