-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
42 lines (42 loc) · 1.05 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
{
"name": "@probot/adapter-aws-lambda-serverless",
"version": "0.0.0-development",
"publishConfig": {
"access": "public"
},
"description": "An extension for running Probot in AWS Lambda",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"lint": "prettier --check '*.{js,md,json}' 'test/**/*.{js,json}' '.github/**/*.yml'",
"lint:fix": "prettier --write '*.{js,md,json}' 'test/**/*.{js,json}' '.github/**/*.yml'",
"test": "jest"
},
"repository": "github:probot/adapter-aws-lambda-serverless",
"dependencies": {
"@types/aws-lambda": "^8.10.85",
"lowercase-keys": "^2.0.0",
"probot": "^13.3.0"
},
"devDependencies": {
"@types/jest": "^29.0.0",
"jest": "^29.0.0",
"fetch-mock": "^10.0.5",
"prettier": "^2.4.1"
},
"keywords": [
"lambda",
"probot",
"github",
"probot-adapter",
"serverless"
],
"jest": {
"testEnvironment": "node"
},
"author": "Tommy Byrd <[email protected]>",
"contributors": [
"Gregor Martynus (https://github.com/gr2m)"
],
"license": "ISC"
}