-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
62 lines (62 loc) · 1.96 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
{
"author": "Mason Goetz <masonlgoetz@gmail.com>",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@aws-sdk/client-s3": "^3.574.0",
"@slack/web-api": "^7.0.4",
"date-fns": "^3.6.0",
"memory-cache": "^0.2.0",
"node-fetch": "^3.3.2",
"winston": "^3.13.0"
},
"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": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^12.0.0",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.0.3",
"@semantic-release/npm": "^12.0.1",
"@types/memory-cache": "^0.2.5",
"@types/node": "^20.12.11",
"@types/node-fetch": "^2.6.11",
"@typescript-eslint/parser": "^7.8.0",
"@vercel/ncc": "^0.38.1",
"commitizen": "^4.3.0",
"conventional-changelog-conventionalcommits": "7.0.2",
"eslint": "^9.2.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"semantic-release": "^23.1.1",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5"
},
"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": "8.0.0"
}