-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.01 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
{
"name": "probot-history",
"version": "0.1.0",
"description": "a GitHub App that notifies contributors when a change in history has occured",
"author": "Nick Garlis",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/nickgarlis/probot-history.git"
},
"scripts": {
"start": "probot run ./index.js",
"test": "jest && standard"
},
"dependencies": {
"child_process": "^1.0.2",
"joi": "^13.3.0",
"probot": "^6.1.0",
"probot-config": "^0.1.0",
"standard": "^10.0.3"
},
"engines": {
"node": "^8.9",
"npm": "^5.6"
},
"devDependencies": {
"jest": "^22.2.2",
"smee-client": "^1.0.1"
},
"standard": {
"env": [
"jest"
]
},
"bugs": {
"url": "https://github.com/nickgarlis/probot-history/issues"
},
"homepage": "https://github.com/nickgarlis/probot-history#readme",
"main": "index.js",
"directories": {
"lib": "lib"
},
"keywords": [
"history",
"probot",
"github",
"bot"
]
}