-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 1008 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "@vscode/vscode-perf-bot",
"version": "0.2.7",
"description": "Allows to run performance tests with Slack bot messages for VS Code.",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-perf-bot"
},
"homepage": "https://github.com/Microsoft/vscode-perf-bot",
"keywords": [
"vscode"
],
"license": "MIT",
"author": {
"name": "Microsoft Corporation"
},
"main": "out/index",
"bin": {
"vscode-perf-bot": "bin/vscode-perf-bot"
},
"scripts": {
"compile": "tsc -p ./",
"build": "tsc -p ./",
"watch": "tsc -watch -p ./",
"prepare": "npm run build"
},
"engines": {
"node": ">= 16"
},
"dependencies": {
"@octokit/rest": "^19.0.7",
"@slack/web-api": "^6.8.0",
"chalk": "^4.x",
"commander": "^9.4.0"
},
"devDependencies": {
"@types/node": "18.x",
"typescript": "5.4.x"
}
}