-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.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
{
"name": "idux-bot",
"version": "1.0.0",
"private": true,
"description": "Idux Bot is a bot that helps the project by doing all kind of administrative tasks on our PR and issues.",
"author": "danranVm <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/IduxFE/idux-bot",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"dev": "nodemon --exec \"npm start\"",
"build": "tsc -p tsconfig.json",
"start": "probot run ./lib/index.js",
"test": "jest"
},
"dependencies": {
"@vitalets/google-translate-api": "^5.0.0",
"axios": "^0.21.1",
"lodash": "^4.17.21",
"probot": "^11.0.1"
},
"devDependencies": {
"@types/jest": "^26.0.19",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.19",
"jest": "^26.6.3",
"nock": "^13.0.5",
"nodemon": "^2.0.7",
"smee-client": "^1.2.2",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"engines": {
"node": ">= 10.13.0"
},
"jest": {
"testEnvironment": "node"
}
}