-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
32 lines (32 loc) · 932 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
{
"name": "project-spampr",
"version": "1.0.0",
"private": true,
"description": "A probot app to try close spammy pull requests. Built within hours of seeing a flood of spammy prs during hacktoberfest 2020",
"author": "Chinmay Kabi <[email protected]>",
"license": "ISC",
"repository": "https://github.com/Chinmay-KB/project-spampr.git",
"homepage": "https://github.com/Chinmay-KB/project-spampr",
"bugs": "https://github.com/Chinmay-KB/project-spampr/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"start": "probot run ./index.js",
"test": "jest"
},
"dependencies": {
"probot": "^10.1.0",
"node-fetch": "2.6.1"
},
"devDependencies": {
"jest": "^26.4.0",
"nock": "^13.0.4",
"smee-client": "^1.1.0"
},
"engines": {
"node": ">= 10.13.0"
}
}