-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 845 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 845 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
38
39
40
41
{
"name": "flybot",
"version": "1.0.0",
"private": true,
"description": "A Probot app",
"author": "MTPenguin",
"license": "ISC",
"homepage": "https://github.com//",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"node": "probot run ./index.js",
"start": "nodemon --ignore 'report.html**' ./main.js",
"test": "jest",
"port": "lsof -i tcp:3000"
},
"dependencies": {
"cookie-parser": "^1.4.6",
"esm": "^3.2.25",
"execa": "^7.1.1",
"express-session": "^1.17.3",
"js-base64": "^3.7.5",
"octokit": "^2.0.14",
"probot": "^12.2.4"
},
"devDependencies": {
"jest": "^29.0.0",
"nock": "^13.0.5",
"nodemon": "^2.0.21",
"smee-client": "^1.2.2"
},
"engines": {
"node": ">= 10.13.0"
},
"jest": {
"testEnvironment": "node"
}
}