forked from Wannabegeeks/GithubBeginners
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 830 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 830 Bytes
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
{
"name": "first-pr-merge",
"version": "1.0.0",
"description": "Congratulate users when their first PR is merged into your repository.",
"main": "index.js",
"scripts": {
"start": "probot run ./index.js",
"test": "mocha && standard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/behaviorbot/first-pr-merge.git"
},
"author": "hiimbex",
"license": "ISC",
"bugs": {
"url": "https://github.com/behaviorbot/first-pr-merge/issues"
},
"homepage": "https://github.com/behaviorbot/first-pr-merge#readme",
"devDependencies": {
"expect": "^1.20.2",
"mocha": "^5.2.0",
"standard": "^12.0.1"
},
"dependencies": {
"probot": "9.3.0"
},
"engines": {
"node": ">= 8.0.0",
"npm": ">= 4.0.0"
},
"standard": {
"env": [
"mocha"
]
}
}