70 lines
1.5 KiB
JSON
70 lines
1.5 KiB
JSON
{
|
|
"name": "harvest-vscode",
|
|
"displayName": "Harvest Time Tracker",
|
|
"description": "Harvest Integration to VS Code",
|
|
"version": "0.1.0",
|
|
"publisher": "Tzedakah",
|
|
"repository": "https://github.com/joshuashoemaker/harvest-vscode",
|
|
"icon": "harvestLogo.png",
|
|
"engines": {
|
|
"vscode": "^1.49.0"
|
|
},
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"keywords": [
|
|
"Project Management",
|
|
"time tracker"
|
|
],
|
|
"activationEvents": [
|
|
"*"
|
|
],
|
|
"main": "./out/extension.js",
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "harvest-vscode.punchTime",
|
|
"title": "Harvest: Punch Time"
|
|
},
|
|
{
|
|
"command": "harvest-vscode.login",
|
|
"title": "Harvest: Login"
|
|
},
|
|
{
|
|
"command": "harvest-vscode.logout",
|
|
"title": "Harvest: Logout"
|
|
},
|
|
{
|
|
"command": "harvest-vscode.stopTimer",
|
|
"title": "Harvest: Stop Timer"
|
|
}
|
|
]
|
|
},
|
|
"scripts": {
|
|
"vscode:prepublish": "npm run compile",
|
|
"compile": "tsc -p ./",
|
|
"lint": "eslint src --ext ts",
|
|
"watch": "tsc -watch -p ./",
|
|
"pretest": "npm run compile && npm run lint",
|
|
"core-test": "ts-node ./src/test.suite/coreTests.ts",
|
|
"extention-test": "node ./out/test/runTest.js"
|
|
},
|
|
"devDependencies": {
|
|
"@types/axios": "^0.14.0",
|
|
"@types/glob": "^7.1.3",
|
|
"@types/mocha": "^8.0.0",
|
|
"@types/node": "^14.0.27",
|
|
"@types/vscode": "^1.49.0",
|
|
"@typescript-eslint/eslint-plugin": "^3.8.0",
|
|
"@typescript-eslint/parser": "^3.8.0",
|
|
"eslint": "^7.6.0",
|
|
"glob": "^7.1.6",
|
|
"mocha": "^8.0.1",
|
|
"typescript": "^3.8.3",
|
|
"vscode-test": "^1.4.0"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^0.19.0"
|
|
}
|
|
}
|