-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.06 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
{
"name": "ci-cd-bot",
"version": "1.0.0",
"private": true,
"description": "A CI/CD bot which can be integrated with GitHub (public as well as enterprise) with ease and flexibility",
"author": "Ayush Patel <[email protected]>",
"license": "Apache-2.0",
"homepage": "https://github.com/Ayush21298/ci-cd-bot",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"start": "probot run ./index.js",
"test": "jest",
"lint": "eslint . --ext .js",
"lint-fix": "eslint --fix . --ext .js"
},
"dependencies": {
"probot": "^12.2.4",
"probot-commands": "^1.1.0"
},
"devDependencies": {
"eslint": "^8.27.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-google": "^0.14.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.5.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.0.0",
"nock": "^13.0.5",
"smee-client": "^1.2.2"
},
"engines": {
"node": ">= 10.13.0"
},
"jest": {
"testEnvironment": "node"
}
}