This repository was archived by the owner on Dec 4, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.28 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.28 KB
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
{
"name": "probot-report",
"version": "0.1.17",
"description": "Sends out periodic reports via email",
"author": "Jan Michael Auer <jan.auer@sentry.io>",
"license": "BSD-3-Clause",
"repository": "https://github.com/getsentry/probot-report.git",
"scripts": {
"fix:eslint": "eslint --fix lib",
"fix:prettier": "prettier --write 'lib/**/*.js'",
"fix": "npm-run-all fix:eslint fix:prettier",
"start": "probot run ./index.js",
"test:jest": "jest",
"test:eslint": "eslint lib",
"test:prettier": "prettier-check 'lib/**/*.js'",
"test": "npm-run-all test:jest test:eslint test:prettier",
"test:watch": "jest --watch --notify"
},
"dependencies": {
"botkit": "^0.6.11",
"dryrun": "^1.0.2",
"js-yaml": "^3.10.0",
"lodash": "^4.17.4",
"moment": "^2.19.3",
"node-schedule": "^1.2.5",
"nodemailer": "^4.4.0",
"nodemailer-sendgrid-transport": "^0.2.0",
"probot": "^0.11.0"
},
"devDependencies": {
"eslint": "^4.12.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.8.0",
"jest": "^21.2.1",
"localtunnel": "^1.8.2",
"npm-run-all": "^4.1.2",
"prettier": "^1.9.0",
"prettier-check": "^2.0.0"
},
"engines": {
"node": ">= 8"
}
}