This repository has been archived by the owner on Jun 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
55 lines (55 loc) · 1.57 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
{
"name": "kiali-bot",
"version": "0.2.0",
"description": "A bot to manage the workflow for Kiali Project",
"author": "Kiali Mantainers Team <kiali-dev@googlegroups.com> (https://kiali.io)",
"license": "SEE LICENSE IN LICENSE",
"repository": "https://github.com/kiali/kiali-bot.git",
"homepage": "https://github.com/kiali/kiali-bot",
"bugs": "https://github.com/kiali/kiali-bot/issues",
"private": true,
"keywords": [
"probot",
"github",
"probot-app"
],
"files": [
"lib/**/*"
],
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"build:watch": "tsc && (tsc -w --preserveWatchOutput & nodemon)",
"dev": "npm run build:watch",
"start": "probot run ./lib/index.js",
"lint": "eslint --fix '{src,test}/**/*.ts'",
"test": "env $(cat .env.tests) jest && eslint '{src,test}/**/*.ts'",
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"moment": "^2.29.2",
"probot": "^12.1.2",
"probot-config": "^1.1.0"
},
"devDependencies": {
"@octokit/types": "^6.1.1",
"@types/jest": "^27.0.3",
"@types/nock": "^11.1.0",
"@types/node": "^14.0.26",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.3",
"nock": "^13.2.1",
"nodemon": "^2.0.15",
"prettier": "^2.5.0",
"smee-client": "^1.2.2",
"ts-jest": "^27.0.7",
"typescript": "^4.5.2"
},
"engines": {
"node": ">= 10.21"
}
}