-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.12 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "cru-merge-bot",
"version": "1.0.0",
"private": true,
"description": "A Probot app for merging branches into staging",
"author": "Spencer Oberstadt",
"license": "ISC",
"repository": "https://github.com/CruGlobal/github-merge-bot.git",
"homepage": "https://github.com/CruGlobal/github-merge-bot",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"dev": "npm run build:watch",
"start": "node ./dist/index.js",
"lint": "standard --fix",
"jest": "jest --detectOpenHandles",
"test": "tsc && jest && standard",
"test:watch": "jest --watch --notify --notifyMode=change --coverage",
"build": "serverless webpack",
"build:ts": "tsc",
"build:watch": "tsc && (tsc -w --preserveWatchOutput & nodemon)"
},
"dependencies": {
"@probot/serverless-lambda": "^0.5.0",
"probot": "^9.8.1",
"rollbar": "^2.16.2",
"source-map-support": "^0.5.19"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.1",
"@types/nock": "^11.1.0",
"@types/node": "^17.0.23",
"@typescript-eslint/parser": "^5.19.0",
"babel-loader": "^8.2.4",
"babel-plugin-source-map-support": "^2.1.3",
"dotenv": "^16.0.0",
"eslint-plugin-typescript": "^0.14.0",
"jest": "^27.5.1",
"nock": "^13.2.4",
"nodemon": "^2.0.15",
"rollbar-sourcemap-webpack-plugin": "^3.3.0",
"serverless": "^3.35.2",
"serverless-offline": "^8.5.0",
"serverless-webpack": "^5.7.0",
"smee-client": "^1.2.2",
"standard": "^16.0.4",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-node-externals": "^3.0.0"
},
"engines": {
"node": ">= 16.14.0",
"npm": ">= 4.0.0"
},
"standard": {
"parser": "@typescript-eslint/parser",
"env": {
"node": true,
"jest": true
},
"plugins": [
"typescript"
]
},
"nodemonConfig": {
"exec": "npm start",
"watch": [
".env",
"."
]
},
"jest": {
"testEnvironment": "node"
}
}