-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
46 lines (46 loc) · 1.31 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
46
{
"name": "ops-bot",
"version": "1.0.0",
"private": true,
"description": "RAPIDS Probot App",
"author": "AJ Schmidt <aschmidt@nvidia.com>",
"license": "ISC",
"repository": "https://github.com/ajschmidt8/ops-bot.git",
"homepage": "https://github.com/ajschmidt8/ops-bot",
"bugs": "https://github.com/ajschmidt8/ops-bot/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"build": "npm run clean && tsc --project tsconfig.prod.json",
"clean": "rm -rf dist",
"deploy": "sls deploy",
"start": "probot run ./dist/index.js",
"test": "jest --coverage --silent"
},
"dependencies": {
"@aws-sdk/client-lambda": "^3.398.0",
"@probot/adapter-aws-lambda-serverless": "^3.0.3",
"axios": "^1.5.0",
"nunjucks": "^3.2.4",
"probot": "^12.3.1",
"strip-comments": "^2.0.1",
"webhook-authorizer": "github:nv-gha-runners/webhook-authorizer#9c0ca21ff4517d712e1ab3e25f7ff807d0f519da"
},
"devDependencies": {
"@types/jest": "^29.5.4",
"@types/node": "^18.17.12",
"@types/nunjucks": "^3.2.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.48.0",
"jest": "^29.6.4",
"ts-jest": "^29.1.1",
"typescript": "^4.9.5"
},
"engines": {
"node": ">= 10.13.0"
}
}