-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.14 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
{
"name": "catsup",
"version": "1.0.3",
"private": true,
"description": "This app alerts you of good first issues.",
"author": "Brian 'bdougie' Douglas <[email protected]>",
"license": "ISC",
"type": "module",
"keywords": [
"github",
"github-app"
],
"repository": "github:open-sauced/catsup",
"engines": {
"node": ">= 16.7.0",
"npm": ">= 8.0.0"
},
"scripts": {
"start": "netlify dev",
"dev": "node --require dotenv/config dev.js",
"lint": "eslint --report-unused-disable-directives .",
"format": "npm run lint -- --fix"
},
"dependencies": {
"@octokit/app": "^14.0.0"
},
"devDependencies": {
"@netlify/functions": "^1.6.0",
"@open-sauced/check-engines": "^1.2.0",
"@open-sauced/conventional-commit": "^1.0.1",
"dotenv": "^10.0.0",
"eslint": "^8.8.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.0",
"github-app-webhook-relay": "^1.1.0",
"jest": "^27.5.1",
"netlify-cli": "^15.8.1",
"smee-client": "^1.2.2",
"wrangler": "^0.0.17"
},
"jest": {
"testEnvironment": "node"
}
}