-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 937 Bytes
/
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
{
"name": "annotate",
"version": "1.0.0",
"description": "This action reads a requirements.txt file and annotates each package with maturity and health data using the Score API.<br> It provides recommendations on whether adding the package improves stability and maintainability.",
"main": "src/index.js",
"scripts": {
"test": "jest",
"bundle": "webpack",
"lint": "eslint ./src",
"lint:report": "eslint ./src --output-file eslint_report.json --format json"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@eslint/js": "^9.10.0",
"babel-jest": "^29.7.0",
"eslint": "^9.10.0",
"globals": "^15.14.0",
"jest": "^29.7.0",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
}
}