-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
68 lines (68 loc) · 1.79 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
58
59
60
61
62
63
64
65
66
67
68
{
"name": "vscode-github-triage-actions",
"version": "1.0.0",
"description": "GitHub Actions used by VS Code for triaging issues",
"scripts": {
"test": "jest test",
"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/exec": "^1.0.4",
"@actions/github": "^2.1.1",
"@octokit/webhooks": "^7.12.2",
"@types/lodash.escaperegexp": "^4.1.6",
"@types/micromatch": "^4.0.1",
"@types/semver": "^7.3.4",
"axios": "^0.21.1",
"dotenv": "^8.2.0",
"is-plain-object": "^5.0.0",
"json-parse": "^1.0.3",
"json-parse-even-better-errors": "^2.3.1",
"lodash": "^4.17.20",
"lodash.escaperegexp": "^4.1.2",
"micromatch": "^4.0.2",
"semver": "^7.3.2",
"webpack-cli": "^4.7.2",
"xmlhttprequest": "^1.8.0"
},
"devDependencies": {
"@types/chai": "^4.2.10",
"@types/jest": "^26.0.23",
"@types/node": "^14.14.7",
"@types/yargs": "^15.0.4",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.3.8",
"jest": "^26.6.3",
"json-parse-better-errors": "^1.0.2",
"nock": "^12.0.2",
"prettier": "2.0.2",
"ts-jest": "^26.4.4",
"ts-node": "^8.10.2",
"typescript": "^3.9.7",
"yargs": "^15.3.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run build && git add \"**/*.js\""
}
}
}