-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.79 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
{
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^5.1.1",
"@aws-sdk/client-s3": "^3.620.0",
"@slack/web-api": "^6.12.0",
"date-fns": "^2.30.0"
},
"description": "Reminds of pull requests that are still needing for reviews and about the ones that are ready to be merged",
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^16.2.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.1.0",
"@semantic-release/npm": "^12.0.1",
"@types/node": "^16.18.104",
"@types/node-fetch": "^2.6.11",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vercel/ncc": "^0.34.0",
"conventional-changelog-conventionalcommits": "^4.6.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.5.0",
"prettier": "^2.8.8",
"semantic-release": "^24.0.0",
"ts-jest": "^27.1.5",
"typescript": "^4.9.5"
},
"license": "MIT",
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"yarn format",
"yarn lint:script"
]
},
"main": "src/index.ts",
"name": "github-action-pr-slack-reminder",
"repository": "[email protected]:sebastiancretu/github-action-pr-slack-reminder.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": "1.1.3"
}