forked from mlg87/pr-reviewer-slack-notify-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.89 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
{
"author": "Mason Goetz <masonlgoetz@gmail.com>",
"dependencies": {
"@actions/core": "^1.8.0",
"@actions/github": "^5.0.1",
"@aws-sdk/client-s3": "^3.58.0",
"@slack/web-api": "^6.7.1",
"date-fns": "^2.28.0",
"node-fetch": "^2.6.7",
"winston": "^3.7.2"
},
"description": "Notify requested PR reviewers via slack so they actually know that you want them to look at something because people don't check email.",
"devDependencies": {
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.4",
"@semantic-release/npm": "^9.0.1",
"@types/node": "^16.10.5",
"@types/node-fetch": "^2.6.1",
"@typescript-eslint/parser": "^5.8.1",
"@vercel/ncc": "0.36.1",
"commitizen": "^4.2.3",
"conventional-changelog-conventionalcommits": "^4.6.3",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.2.5",
"js-yaml": "^4.1.0",
"lint-staged": "^12.4.1",
"prettier": "^2.5.1",
"semantic-release": "^19.0.2",
"ts-jest": "^27.1.2",
"typescript": "^4.4.4"
},
"license": "MIT",
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"yarn format",
"yarn lint:script"
]
},
"main": "src/index.ts",
"name": "pr-reviewer-slack-notify",
"repository": "git@github.com:mlg87/pr-reviewer-slack-notify.git",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"lint:script": "eslint --fix",
"package": "ncc build --source-map --license licenses.txt --minify",
"release": "semantic-release",
"test": "jest"
},
"version": "7.8.1"
}