-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·72 lines (72 loc) · 2.1 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
69
70
71
72
{
"name": "assign-issue-action",
"version": "2.1.1",
"description": "A GitHub Action to streamline issue assignments with commands for contributors and maintainers.",
"engines": {
"node": "20.x",
"npm": "10.x"
},
"main": "dist/index.js",
"scripts": {
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint . --ext .ts --report-unused-disable-directives",
"build": "ncc build --license licenses.txt",
"tsup": "tsup src/index.ts",
"bundle": "npm run tsup && npm run build",
"test": "jest --coverage",
"test:watch": "jest --watch",
"all": "npm run format && npm run lint && npm run test && npm run bundle",
"prepare": "husky install"
},
"homepage": "https://github.com/takanome-dev/assign-issue-action#readme",
"bugs": "https://github.com/takanome-dev/assign-issue-action/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/takanome-dev/assign-issue-action.git"
},
"keywords": [
"github",
"actions",
"assign",
"slash-assign",
"assign-to-me",
"slash-commands",
"github-actions"
],
"author": "takanome-dev <[email protected]>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"date-fns": "^4.1.0",
"mustache": "^4.2.0"
},
"devDependencies": {
"@babel/preset-env": "7.24.0",
"@babel/preset-typescript": "7.23.3",
"@types/jest": "29.5.13",
"@types/js-yaml": "4.0.9",
"@types/mustache": "4.2.5",
"@types/node": "18.19.50",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "7.18.0",
"@vercel/ncc": "0.38.1",
"eslint": "8.57.1",
"eslint-plugin-github": "4.10.2",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "8.0.3",
"jest": "29.7.0",
"js-yaml": "4.1.0",
"lint-staged": "15.1.0",
"prettier": "3.1.0",
"ts-jest": "29.1.1",
"tsup": "^8.3.0",
"typescript": "5.3.2"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.ts": "prettier --write"
}
}