-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.56 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
{
"name": "github-rebase-review-bot",
"version": "1.0.0",
"private": true,
"description": "A Probot app",
"author": "moovel Group GmbH <[email protected]>",
"license": "Apache-2.0",
"repository": "https://github.com/reach-now/github-rebase-review-bot.git",
"homepage": "https://github.com/reach-now/github-rebase-review-bot",
"bugs": "https://github.com/reach-now/github-rebase-review-bot/issues",
"keywords": ["probot", "github", "probot-app"],
"scripts": {
"build": "tsc",
"build:watch": "tsc && (tsc -w --preserveWatchOutput & nodemon)",
"dev": "npm run build:watch",
"start": "probot run ./lib/index.js",
"lint": "eslint **/*.ts",
"test": "jest **/*.ts",
"test:watch": "jest --watch --notify --notifyMode=change --coverage",
"package": "tsc && cp package.json ./lib/ && cd lib && npm i -P && zip -r ../bundle.zip *"
},
"dependencies": {
"@probot/serverless-lambda": "^0.5.0",
"aws-sdk": "^2.708.0",
"probot": "^9.5.3"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.57",
"@types/jest": "^25.1.0",
"@types/nock": "^11.1.0",
"@types/node": "^10.17.26",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.2.0",
"jest": "^25.1.0",
"nock": "^12.0.0",
"nodemon": "^2.0.0",
"prettier": "^2.0.5",
"smee-client": "^1.1.0",
"ts-jest": "^25.1.0",
"typescript": "^3.9.6"
},
"engines": {
"node": ">= 10.15.0"
},
"jest": {
"testEnvironment": "node"
}
}