-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.1 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
{
"name": "lambda-github-check",
"description": "Ready-to-use GitHub check basis for AWS Lambda",
"version": "1.0.0",
"author": "Mikael Vesavuori",
"license": "MIT",
"main": "./src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/mikaelvesavuori/lambda-github-check.git"
},
"keywords": [
"aws",
"lambda",
"serverless",
"demo",
"example",
"github",
"checks",
"github-apps",
"github-checks"
],
"bugs": {
"url": "https://github.com/mikaelvesavuori/lambda-github-check/issues"
},
"homepage": "https://github.com/mikaelvesavuori/lambda-github-check#readme",
"scripts": {
"start": "sls offline",
"deploy": "npx sls deploy",
"teardown": "npx sls remove",
"package": "npx sls package",
"convert": "openssl pkcs8 -topk8 -inform PEM -outform PEM -in private-key.pem -out private-key-pkcs8.pem -nocrypt"
},
"devDependencies": {
"eslint": "8",
"eslint-config-prettier": "8",
"eslint-plugin-prettier": "4",
"prettier": "2",
"serverless": "3"
},
"dependencies": {
"@octokit/app": "13"
}
}