-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
71 lines (71 loc) · 2.26 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
{
"name": "opensearch-automation-app",
"version": "0.1.15",
"description": "An Automation App that handles all your GitHub Repository Activities",
"author": "Peter Zhu",
"homepage": "https://github.com/opensearch-project/automation-app",
"bin": {
"opensearch-automation-app": "./bin/app.js"
},
"keywords": [
"probot",
"github",
"automation-app"
],
"scripts": {
"build": "npm run format-dryrun && npm run clean && npm run lint && npm run compile",
"postbuild": "npm run test",
"compile": "tsc",
"dev": "npm run clean && npm run compile && probot run ./bin/app.js",
"start": "npm run build && probot run ./bin/app.js",
"clean": "rm -rf ./bin/*",
"format": "prettier --write src/**/*.ts test/**/*.ts configs/**/*.yml",
"format-dryrun": "prettier --check src/**/*.ts test/**/*.ts configs/**/*.yml",
"lint": "eslint --fix \"src/**/*.ts\" --ignore-pattern \"**/*.d.ts\"",
"test": "jest --coverage",
"junit": "jest --reporters=jest-junit"
},
"dependencies": {
"@aws-sdk/client-cloudwatch": "^3.664.0",
"@aws-sdk/client-opensearch": "^3.658.1",
"@aws-sdk/client-s3": "^3.666.0",
"@aws-sdk/client-sts": "^3.658.1",
"@aws-sdk/types": "^3.654.0",
"@octokit/rest": "^21.0.2",
"@opensearch-project/opensearch": "^2.12.0",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"dedent": "^1.5.1",
"js-yaml": "^4.1.0",
"probot": "^13.0.1",
"randomstring": "^1.3.0",
"ts-yaml": "^1.0.0"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@octokit/types": "^13.5.0",
"@octokit/webhooks-types": "^7.5.1",
"@types/jest": "^29.5.13",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.0.0",
"@types/randomstring": "^1.3.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-import": "^2.30.0",
"globals": "^15.9.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"nock": "^14.0.0-beta.5",
"prettier": "^3.3.3",
"smee-client": "^2.0.0",
"ts-jest": "^29.2.5",
"typescript": "^5.3.3",
"typescript-eslint": "^8.5.0"
},
"engines": {
"node": ">= 18"
}
}