forked from Lightning-AI/probot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.44 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
{
"name": "lightning-probot",
"version": "0.1.0",
"description": "Bot actions for PyTorch Lightning",
"author": "Carlos Mocholí <[email protected]> (https://lightning.ai)",
"license": "ISC",
"repository": "https://github.com/Lightning-AI/lightning.git",
"homepage": "https://github.com/Lightning-AI/lightning",
"bugs": "https://github.com/Lightning-AI/lightning/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"build": "rm -rf dist; tsc",
"start": "probot run ./dist/index.js",
"lint": "eslint src/**/*.ts",
"format": "prettier --write **/*.ts"
},
"dependencies": {
"@octokit/core": "^3.6.0",
"@octokit/webhooks-types": "^6.3.6",
"@probot/adapter-github-actions": "^3.1.1",
"@probot/octokit-plugin-config": "^1.1.6",
"minimatch": "^5.1.0",
"probot": "^12.2.5"
},
"devDependencies": {
"@types/bunyan": "^1.8.6",
"@types/node": "^16.13.0",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "^8.21.0",
"eslint-plugin-github": "^4.3.7",
"prettier": "^2.0.5",
"smee-client": "^1.0.2",
"standard": "^12.0.1",
"typescript": "^4.7.4"
},
"engines": {
"node": ">= 8.3.0"
},
"standard": {
"parser": "@typescript-eslint/parser",
"plugins": [
"typescript"
]
},
"nodemonConfig": {
"exec": "npm start",
"watch": [
".env",
"."
]
}
}