-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
54 lines (54 loc) · 1.53 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "vscode-github-triage-actions",
"version": "1.0.0",
"description": "GitHub Actions used by VS Code for triaging issues",
"scripts": {
"test": "mocha -r ts-node/register **/*.test.ts",
"build": "tsc",
"compile": "tsc",
"lint": "eslint -c .eslintrc --fix --ext .ts .",
"watch": "tsc --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/vscode-github-triage-actions.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/microsoft/vscode-github-triage-actions/issues"
},
"homepage": "https://github.com/microsoft/vscode-github-triage-actions#readme",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/github": "^5.0.3",
"@octokit/auth-app": "^4.0.9",
"@azure/core-http": "^3.0.2",
"@azure/identity": "^4.2.1",
"@azure/storage-blob": "^12.13.0",
"@octokit/rest": "^19.0.3",
"@slack/web-api": "^6.12.1",
"axios": "^1.7.4",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"@types/uuid": "^8.3.4",
"@types/yargs": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"chai": "^4.3.6",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"mocha": "^10.0.0",
"nock": "^13.2.9",
"prettier": "2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"yargs": "^17.5.1"
}
}