forked from microsoft/vscode-github-triage-actions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.56 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
55
56
57
{
"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",
"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.2.6",
"@actions/github": "^2.2.0",
"@octokit/rest": "^16.43.1",
"@slack/web-api": "^6.0.0",
"applicationinsights": "^2.3.1",
"axios": "^0.21.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@azure/storage-blob": "^12.9.0",
"@types/chai": "^4.2.10",
"@types/mocha": "^9.1.0",
"@types/uuid": "^8.3.4",
"@types/yargs": "^15.0.4",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"chai": "^4.2.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^4.2.3",
"mocha": "^9.2.2",
"mongodb": "^4.5.0",
"nock": "^12.0.2",
"prettier": "2.6.2",
"ts-node": "^8.6.2",
"typescript": "^4.6.3",
"yargs": "^15.3.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run build && git add \"**/*.js\""
}
}
}