mirror of
https://gitlab.com/aviortheking/code-stats-vscode.git
synced 2025-07-03 10:59:17 +00:00
Updated version to 1.0.9
Added contributors to package.json Had to switch the publisher account
This commit is contained in:
129
package.json
129
package.json
@ -1,65 +1,72 @@
|
||||
{
|
||||
"name": "code-stats-vscode",
|
||||
"displayName": "Code::Stats",
|
||||
"description": "Code::Stats package for Visual Studio Code",
|
||||
"version": "1.0.8",
|
||||
"publisher": "juha-ristolainen",
|
||||
"icon": "logo.png",
|
||||
"repository": {
|
||||
"type": "github",
|
||||
"url": "https://github.com/riussi/code-stats-vscode"
|
||||
},
|
||||
"engines": {
|
||||
"vscode": "^1.10.0"
|
||||
},
|
||||
"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."
|
||||
},
|
||||
"codestats.apiurl": {
|
||||
"type": "string",
|
||||
"default": "https://codestats.net/api/",
|
||||
"description": "Code::Stats API URL. Only change if you know what you are doing!"
|
||||
},
|
||||
"codestats.username": {
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"description": "Code::Stats User Name"
|
||||
}
|
||||
}
|
||||
"name": "code-stats-vscode",
|
||||
"displayName": "Code::Stats",
|
||||
"description": "Code::Stats package for Visual Studio Code",
|
||||
"version": "1.0.9",
|
||||
"license": "MIT",
|
||||
"publisher": "riussi",
|
||||
"contributors": [
|
||||
"Valentin Ivanov (https://github.com/scout119)",
|
||||
"Paul Ryan (https://github.com/sharpred)",
|
||||
"Mikko Ahlroth (https://github.com/Nicd)"
|
||||
],
|
||||
"icon": "logo.png",
|
||||
"repository": {
|
||||
"type": "github",
|
||||
"url": "https://github.com/riussi/code-stats-vscode"
|
||||
},
|
||||
"engines": {
|
||||
"vscode": "^1.10.0"
|
||||
},
|
||||
"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": []
|
||||
"codestats.apiurl": {
|
||||
"type": "string",
|
||||
"default": "https://codestats.net/api/",
|
||||
"description": "Code::Stats API URL. Only change if you know what you are doing!"
|
||||
},
|
||||
"codestats.username": {
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"description": "Code::Stats User Name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"vscode:prepublish": "tsc -p ./",
|
||||
"compile": "tsc -watch -p ./",
|
||||
"postinstall": "node ./node_modules/vscode/bin/install",
|
||||
"test": "node ./node_modules/vscode/bin/test"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "^2.1.5",
|
||||
"vscode": "^1.1.0",
|
||||
"mocha": "^2.3.3",
|
||||
"@types/node": "^6.0.40",
|
||||
"@types/mocha": "^2.2.32"
|
||||
},
|
||||
"dependencies": {
|
||||
"axios": "0.16.2"
|
||||
}
|
||||
"commands": []
|
||||
},
|
||||
"scripts": {
|
||||
"vscode:prepublish": "tsc -p ./",
|
||||
"compile": "tsc -watch -p ./",
|
||||
"postinstall": "node ./node_modules/vscode/bin/install",
|
||||
"test": "node ./node_modules/vscode/bin/test"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "^2.9.1",
|
||||
"vscode": "^1.1.0",
|
||||
"mocha": "^2.3.3",
|
||||
"lodash.template": "^4.4.0",
|
||||
"@types/node": "^6.0.40",
|
||||
"@types/mocha": "^2.2.32"
|
||||
},
|
||||
"dependencies": {
|
||||
"axios": "0.18.0"
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user