forked from behaviorbot/request-info
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.59 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "require-bug-details",
"version": "0.0.0",
"description": "A GitHub App built with probot that automatically closes issues that do not follow the issue template of a GitHub project",
"contributors": [
{
"name": "Vikram Rangaraj",
"email": "[email protected]",
"url": "https://github.com/vikr01"
},
{
"name": "Amila Welihinda",
"email": "[email protected]",
"url": "https://github.com/amilajack"
}
],
"license": "MIT",
"repository": "https://github.com/electron-react-boilerplate/require-bug-details.git",
"homepage": "https://github.com/electron-react-boilerplate/require-bug-details",
"bugs": "https://github.com/electron-react-boilerplate/require-bug-details/issues",
"keywords": [
"probot",
"github",
"probot-app",
"require-bug-details"
],
"scripts": {
"dev": "nodemon",
"start": "probot run ./index.js",
"lint": "eslint .",
"test": "jest && yarn lint",
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"probot": "^7.2.0",
"probot-config": "^1.0.0"
},
"devDependencies": {
"eslint": "^5.10.0",
"eslint-config-bliss": "^3.1.2",
"jest": "^22.4.3",
"nock": "^10.0.0",
"nodemon": "^1.17.2",
"smee-client": "^1.0.2"
},
"engines": {
"node": ">= 8.3.0"
},
"eslintConfig": {
"extends": [
"bliss"
],
"rules": {
"no-restricted-syntax": "off"
}
},
"nodemonConfig": {
"exec": "yarn start",
"watch": [
".env",
"."
]
},
"jest": {
"testEnvironment": "node"
}
}