-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1 KB
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
{
"name": "@auraone/github-app",
"version": "0.1.0",
"description": "GitHub App for automated AuraOne evaluations on pull requests.",
"main": "src/app.js",
"scripts": {
"start": "node src/app.js",
"dev": "nodemon src/app.js",
"test": "jest",
"lint": "eslint src --ext .js",
"lint:fix": "eslint src --ext .js --fix"
},
"keywords": [
"github",
"app",
"ci-cd",
"auraone",
"ai",
"evaluation",
"automation"
],
"author": "AuraOne",
"license": "MIT",
"dependencies": {
"@octokit/app": "^14.0.2",
"@octokit/webhooks": "^12.0.4",
"@auraone/sdk": "^0.1.0",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"eslint": "^8.54.0",
"jest": "^29.7.0",
"nodemon": "^3.0.1"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/auraoneai/github-app.git"
},
"bugs": {
"url": "https://github.com/auraoneai/github-app/issues"
},
"homepage": "https://www.auraone.ai/developers"
}