-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
34 lines (34 loc) · 828 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
{
"name": "remove-outside-collaborators",
"version": "2.1.0",
"description": "Probot app for removing outside (non-org) collaborators from a repository within an organization.",
"author": "Jonathan Cardona <[email protected]>",
"license": "ISC",
"repository": "https://github.com/hollywood/remove-outside-collaborators.git",
"scripts": {
"postversion": "git push --all && git push --tags",
"start": "probot run ./index.js",
"test": "jest && standard"
},
"dependencies": {
"probot": "^6.2.1"
},
"devDependencies": {
"jest": "^24.7.1",
"smee-client": "^1.1.0",
"standard": "^12.0.1"
},
"engines": {
"node": "^8.6.0",
"npm": "^5.3.0"
},
"standard": {
"env": [
"jest"
]
},
"jest": {
"verbose": true,
"testURL": "http://localhost/"
}
}