-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
52 lines (51 loc) · 1.5 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
{
"name": "issue-comment-tag",
"version": "0.0.1",
"private": false,
"description": "GitHub Action to tag a team in an issue",
"main": "main.ts",
"scripts": {
"esbuild": "esbuild main.ts --bundle --outdir=dist --platform=node --external:vscode --external:@vscode/test-electron --external:jest",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "npm run esbuild",
"test": "jest --passWithNoTests",
"all": "npm run esbuild && npm run test # && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rajbos/github-action-issue-comment-tag.git"
},
"keywords": [
"GitHub Actions",
"Tag a team on an inssue"
],
"author": "@rajbos",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"octokit": "^4.0.3",
"yaml": "^2.7.0"
},
"devDependencies": {
"@types/node": "^22.10.3",
"@typescript-eslint/parser": "^7.18.0",
"@vercel/ncc": "^0.38.3",
"ansi-regex": ">=6.1.0",
"dotenv": "^16.4.5",
"esbuild": "^0.24.2",
"eslint": "^8.57.0",
"eslint-plugin-github": "^5.1.4",
"eslint-plugin-jest": "^28.8.3",
"jest": "^27.5.1",
"js-yaml": "^4.1.0",
"prettier": "3.4.1",
"tmpl": ">=1.0.5",
"ts-jest": "^27.1.4",
"typescript": "^4.9.5"
},
"optionalDependencies": {
"fsevents": "^2.3.3"
}
}