forked from probot/adapter-aws-lambda-serverless
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.19 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
47
48
49
50
51
52
{
"name": "@probot/serverless-lambda",
"version": "0.6.0",
"description": "An extension for running Probot in AWS Lambda",
"main": "index.js",
"scripts": {
"lint": "prettier --check '*.js' '*.md' '*.json' '*/*.js' '.github/workflows/*.yml'",
"lint:fix": "prettier --write '*.'js '*.md' '*.json' '*/*.js' '.github/workflows/*.yml'",
"pretest": "npm run -s lint",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/probot/serverless-lambda.git"
},
"dependencies": {},
"devDependencies": {
"jest": "^24.9.0",
"prettier": "^2.1.2",
"probot": "^10.1.1",
"semantic-release": "^17.1.2"
},
"peerDependencies": {
"probot": "^10.1.1"
},
"engines": {
"node": ">= 8.10.0",
"npm": ">= 5.0.0"
},
"keywords": [
"lambda",
"probot",
"github"
],
"standard": {
"env": [
"jest"
]
},
"jest": {
"testEnvironment": "node",
"setupFiles": [
"./tests/setup.js"
]
},
"author": "Tommy Byrd <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/probot/serverless-lambda/issues"
},
"homepage": "https://github.com/probot/serverless-lambda#readme"
}