mirror of
https://gitlab.com/aviortheking/code-stats-vscode.git
synced 2025-07-01 10:09:19 +00:00
Added API integration.
This commit is contained in:
21
package.json
21
package.json
@ -1,8 +1,8 @@
|
||||
{
|
||||
"name": "code-stats-vscode",
|
||||
"displayName": "code-stats-vscode",
|
||||
"displayName": "Code::Stats",
|
||||
"description": "Code::Stats package for Visual Studio Code",
|
||||
"version": "0.0.1",
|
||||
"version": "0.1.0",
|
||||
"publisher": "juha-ristolainen",
|
||||
"engines": {
|
||||
"vscode": "^1.10.0"
|
||||
@ -10,11 +10,25 @@
|
||||
"categories": [
|
||||
"Other"
|
||||
],
|
||||
"maintainers": [
|
||||
"Juha Ristolainen"
|
||||
],
|
||||
"activationEvents": [
|
||||
"*"
|
||||
],
|
||||
"main": "./out/src/code-stats",
|
||||
"contributes": {
|
||||
"configuration": {
|
||||
"type": "object",
|
||||
"title": "code-stats-vscode",
|
||||
"properties": {
|
||||
"codestats.apikey": {
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"description": "Code::Stats API key for this machine."
|
||||
}
|
||||
}
|
||||
},
|
||||
"commands": []
|
||||
},
|
||||
"scripts": {
|
||||
@ -29,5 +43,8 @@
|
||||
"mocha": "^2.3.3",
|
||||
"@types/node": "^6.0.40",
|
||||
"@types/mocha": "^2.2.32"
|
||||
},
|
||||
"dependencies": {
|
||||
"axios": "0.15.3"
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user