-
Notifications
You must be signed in to change notification settings - Fork 162
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.1 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.1 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
{
"name": "all-contributors-bot",
"version": "0.0.0-development",
"private": true,
"description": "A bot for automatically adding all your contributors",
"author": "Jake Bolam <jake.bolam@gmail.com> (https://jakebolam.com)",
"repository": "https://github.com/all-contributors/app",
"keywords": [
"all-contributors",
"probot",
"github-app",
"probot-app"
],
"scripts": {
"start": "probot run ./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": {
"all-contributors-cli": "^6.26.1",
"commit-conv": "^1.0.3",
"compromise": "^11.14.3",
"probot": "^12.2.8"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"got": ">=14.6.6",
"jest": "^30.2.0",
"nock": "^14.0.10",
"prettier": "^3.8.1",
"smee-client": "^5.0.0",
"vercel": "^50.5.0"
},
"jest": {
"testEnvironment": "node"
}
}