-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.4 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.4 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
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "openai-summarize-diff-action",
"version": "1.0.0",
"description": "GitHub Action that uses OpenAI to explain and summarize git diffs",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"build": "npx @vercel/ncc build src/index.js --out dist",
"lint": "eslint .",
"precommit": "npm run lint && npm test",
"prebuild": "npm run lint && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/captradeoff/openai-summarize-diff-action.git"
},
"keywords": [
"github-action",
"openai",
"git-diff",
"ai",
"summarize"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/captradeoff/openai-summarize-diff-action/issues"
},
"homepage": "https://github.com/captradeoff/openai-summarize-diff-action#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^5.1.1",
"openai": "^4.28.0"
},
"devDependencies": {
"@vercel/ncc": "^0.38.3",
"dotenv": "^16.4.7",
"eslint": "^8.57.1",
"jest": "^29.7.0",
"nock": "^13.5.1"
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"src/**/*.js"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
}
}
}