This repository has been archived by the owner on Jan 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
80 lines (80 loc) · 2.03 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
{
"name": "pytorch-probot",
"version": "1.0.0",
"description": "Bot actions for PyTorch",
"author": "Edward Z. Yang <[email protected]> (https://pytorch.org)",
"license": "ISC",
"repository": "https://github.com//pytorch.git",
"homepage": "https://github.com//pytorch",
"bugs": "https://github.com//pytorch/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc && (tsc -w --preserveWatchOutput & nodemon)",
"dev": "yarn run build:watch",
"start": "probot run ./dist/index.js",
"lint": "eslint src/**/*.ts",
"test": "jest",
"test:watch": "jest --watch --notify --notifyMode=change --coverage",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*ts"
},
"dependencies": {
"@probot/serverless-lambda": "^0.4.0",
"@types/minimist": "^1.2.2",
"@types/source-map-support": "^0.5.4",
"axios": "^0.21.2",
"probot": "^9",
"probot-actions-adapter": "^1.0.2",
"source-map-support": "^0.5.19"
},
"devDependencies": {
"@types/bunyan": "^1.8.6",
"@types/jest": "^24.0.23",
"@types/nock": "^11.1.0",
"@types/node": "^12.7.12",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"@vercel/ncc": "^0.28.6",
"axios-debug-log": "^0.7.0",
"eslint": "^7.30.0",
"eslint-plugin-github": "^4.1.3",
"eslint-plugin-jest": "^22.21.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^24.0.0",
"jest-circus": "^24.9.0",
"nock": "^10.0.0",
"nodemon": "^1.17.2",
"prettier": "^2.0.5",
"smee-client": "^1.0.2",
"standard": "^12.0.1",
"ts-jest": "^24.2.0",
"typescript": "^3.6.4"
},
"engines": {
"node": ">= 8.3.0"
},
"standard": {
"parser": "@typescript-eslint/parser",
"env": [
"jest"
],
"plugins": [
"typescript"
]
},
"nodemonConfig": {
"exec": "npm start",
"watch": [
".env",
"."
]
},
"jest": {
"testEnvironment": "node"
}
}