-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.35 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
{
"name": "issue-to-branch",
"version": "1.0.0",
"private": true,
"description": "Creates a branch in GitHub when a GitHub issue is assigned",
"author": "Rebecca Vest <olserebe@hotmail.com>",
"license": "ISC",
"repository": "https://github.com/idahogurl/issue-to-branch.git",
"homepage": "https://github.com/idahogurl/issue-to-branch",
"bugs": "https://github.com/idahogurl/issue-to-branch/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"dev": "nodemon",
"start": "probot run ./index.js",
"lint": "eslint",
"test": "jest --coverage && eslint",
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"@octokit/auth-app": "^4.0.9",
"dotenv": "^16.0.3",
"node-fetch": "^2.6.7",
"probot": "^12.3.0"
},
"devDependencies": {
"eslint": "8.41.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest": "27.2.1",
"jest": "29.5.0",
"nock": "13.3.1",
"nodemon": "2.0.22",
"prettier": "2.8.8",
"smee-client": "1.2.3",
"vercel": "29.4.0"
},
"engines": {
"node": "16"
},
"standard": {
"env": [
"jest"
]
},
"nodemonConfig": {
"exec": "npm start",
"watch": [
".env",
"."
]
},
"jest": {
"testEnvironment": "node"
}
}