-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
38 lines (38 loc) · 1.04 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
{
"name": "chrome-devrel-review-bot",
"version": "1.0.0",
"description": "Automated content reviews of web.dev and developer.chrome.com pull requests.",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "npx nodemon server.js;",
"test": "jest",
"send_event": "node_modules/.bin/probot receive -e pull_request -p ./test/approvals/fixtures/pull_request.edited.json ./approvals/app.js"
},
"dependencies": {
"@octokit/core": "3.2.4",
"axios": "0.21.0",
"body-parser": "^1.20.0",
"dotenv": "8.2.0",
"express": "4.17.1",
"markdownlint": "0.21.1",
"micromatch": "^4.0.5",
"probot": "^12.2.2"
},
"engines": {
"node": "14.x"
},
"repository": {
"url": "https://github.com/googlechromelabs/chrome-devrel-review-bot"
},
"license": "Apache-2.0",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/express": "^4.17.13",
"@types/markdownlint": "^0.18.0",
"@types/node": "^16.6.2",
"jest": "^26.6.3",
"nock": "^13.2.4",
"nodemon": "2.0.6"
}
}