harvest-vscode/package.json
ysandler 51f7b89c94 🧪 creted autmoated test suite
test user, harvest, and projects
2020-09-17 18:23:38 -05:00

51 lines
1.1 KiB
JSON

{
"name": "harvest-vscode",
"displayName": "harvest-vscode",
"description": "Varvest Integration to VS Code",
"version": "0.0.1",
"engines": {
"vscode": "^1.49.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:harvest-vscode.helloWorld"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "harvest-vscode.helloWorld",
"title": "Hello World"
}
]
},
"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"
}
}