-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.45 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": "all-contributors-bot",
"version": "0.0.0-development",
"private": true,
"description": "A bot for automatically adding all your contributors",
"author": "Jake Bolam <[email protected]> (https://jakebolam.com)",
"repository": "https://github.com/all-contributors/all-contributors-bot",
"keywords": [
"all-contributors",
"probot",
"github-app",
"probot-app"
],
"scripts": {
"start": "node ./app.js",
"dev": "DEBUG=1 node ./app.js",
"lint": "prettier --check '{src,test}/**/*.{js,json}' '*.{md,json,js}' 'contributing/*.md' '.github/**/*.{yml,md}'",
"lint:fix": "prettier --write '{src,test}/**/*.{js,json}' '*.{md,json,js}' 'contributing/*.md' '.github/**/*.{yml,md}'",
"test": "jest --coverage"
},
"dependencies": {
"@posthog/all-contributors-cli": "0.0.1",
"@sentry/node": "^6.13.2",
"compromise": "^11.13.0",
"mailgun-js": "^0.22.0",
"node-fetch": "^2.6.1",
"openai": "^3.2.1",
"pg": "^8.5.1",
"pino": "^6.9.0",
"posthog-node": "^1.0.7",
"probot": "^11.0.1",
"smee-client": "^1.2.2"
},
"devDependencies": {
"@types/jest": "^26.0.19",
"jest": "^26.6.3",
"nock": "^13.0.5",
"prettier": "^2.2.1",
"semantic-release": "^17.3.0",
"vercel": "^21.0.1"
},
"jest": {
"testEnvironment": "node"
}
}