generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 940 Bytes
/
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
{
"name": "gh-action-open-pr-notifier",
"version": "1.0.0",
"description": "Posts a list of all open pull requests in Slack",
"main": "index.js",
"scripts": {
"lint": "eslint index.js src/* spec/*",
"test-dev": "nodemon --exec jasmine",
"test": "jasmine"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/leopic/gh-action-open-pr-notifier.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript",
"Slack"
],
"bugs": {
"url": "https://github.com/leopic/gh-action-open-pr-notifier/issues"
},
"homepage": "https://github.com/leopic/gh-action-open-pr-notifier#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^2.1.1",
"@slack/web-api": "^5.8.1"
},
"devDependencies": {
"eslint": "^6.3.0",
"jasmine": "^3.5.0",
"jasmine-core": "^3.5.0",
"nock": "^12.0.3",
"nodemon": "^2.0.3"
}
}