forked from MishaKav/pytest-coverage-comment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.31 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
{
"name": "pytest-coverage-comment",
"version": "1.1.52",
"description": "Comments a pull request with the pytest code coverage badge, full report and tests summary",
"author": "Misha Kav",
"license": "MIT",
"keywords": [
"actions",
"pull-request",
"push",
"comment",
"message",
"python",
"pytest",
"coverage"
],
"bugs": {
"url": "https://github.com/MishaKav/pytest-coverage-comment/issues"
},
"homepage": "https://github.com/MishaKav/pytest-coverage-comment/#readme",
"main": "src/index.js",
"scripts": {
"format": "prettier --write src/**/*.js",
"format-check": "prettier --check src/**/*.js",
"lint": "eslint src/**/*.js",
"build": "ncc build src/index.js --license licenses.txt",
"bump-version": "npm version patch",
"all": "npm run lint && npm run format && npm run build"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^4.0.0",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"eslint": "^8.53.0",
"prettier": "^3.1.0"
},
"prettier": {
"semi": true,
"singleQuote": true
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2020
},
"extends": [
"eslint:recommended"
],
"env": {
"es6": true,
"node": true
}
}
}