-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 942 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 942 Bytes
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
{
"name": "workflows-app",
"version": "1.0.0",
"private": true,
"description": "A workflows-app",
"author": "chenc <double_cl@163.com>",
"license": "ISC",
"homepage": "https://github.com/chenc041/workflows-app",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"build": "tsc && esbuild src/index.ts --bundle --platform=node --minify --outdir=lib",
"start": "LOG_LEVEL=debug && pnpm build && probot run ./lib/index.js",
"test": "jest"
},
"dependencies": {
"@vitalets/google-translate-api": "^8.0.0",
"probot": "^12.2.0"
},
"pre-push": [
"build"
],
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/node": "^18.7.13",
"esbuild": "^0.15.5",
"jest": "^27.5.1",
"nock": "^13.0.5",
"pre-push": "^0.1.1",
"smee-client": "^1.2.2",
"ts-jest": "^27.1.3",
"typescript": "^4.1.3"
},
"engines": {
"node": ">= 10.13.0"
}
}