-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
80 lines (80 loc) · 2.31 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
73
74
75
76
77
78
79
80
{
"name": "actions-label-commenter",
"description": "Label Commenter GitHub Action",
"main": "dist/index.js",
"engines": {
"node": ">=v20.0.0",
"npm": ">=10.0.1"
},
"scripts": {
"postinstall": "npx husky install",
"lint": "eslint --ext .ts .",
"lint:fix": "eslint --ext .ts --fix .",
"test": "env ACTIONS_LABEL_COMMENTER_TEST=true jest --config jest.config.json",
"build": "ncc build ./src/index.ts -o dist --source-map",
"build:minify": "ncc build ./src/index.ts -o dist --source-map --minify",
"tsc": "tsc --noEmit",
"fmt": "prettier --write '**/*.ts'",
"fmt:check": "prettier --check '**/*.ts'",
"all": "npm run fmt && npm run lint:fix && npm run tsc && npm test"
},
"lint-staged": {
"{src,__tests__}/**/*.ts": [
"prettier --check",
"eslint",
"jest --config jest.config.json --findRelatedTests"
],
"README.md": [
"npx doctoc@2.1.0 --github"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/peaceiris/actions-label-commenter.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript",
"TypeScript"
],
"author": "peaceiris",
"license": "MIT",
"bugs": {
"url": "https://github.com/peaceiris/actions-label-commenter/issues"
},
"homepage": "https://github.com/peaceiris/actions-label-commenter#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@octokit/graphql": "^5.0.4",
"@octokit/types": "^9.0.0",
"@octokit/webhooks-types": "^6.10.0",
"js-yaml": "^4.1.0",
"lodash-es": "^4.17.21",
"mustache": "^4.2.0"
},
"devDependencies": {
"@types/jest": "^29.2.6",
"@types/js-yaml": "^4.0.5",
"@types/lodash-es": "^4.17.6",
"@types/mustache": "^4.2.2",
"@types/node": "~16",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"@vercel/ncc": "^0.38.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.3.1",
"lint-staged": "^13.1.0",
"nock": "^13.3.0",
"prettier": "2.8.8",
"ts-jest": "^29.0.5",
"typescript": "^4.9.4"
}
}