-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.34 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
{
"name": "code-coverage-github-action",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "GitHub Action that collects an LCOV code coverage report and uploads it to Aikido.",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/main.js -o dist --minify --source-map --license licenses.txt",
"lint": "eslint src __tests__",
"format": "prettier --write \"**/*.js\"",
"format:check": "prettier --check \"**/*.js\"",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"test:integration": "node --experimental-vm-modules node_modules/jest/bin/jest.js __tests__/integration",
"local": "local-action . src/main.js .env",
"all": "npm run format && npm run lint && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AikidoSec/code-coverage-github-action.git"
},
"keywords": [
"actions",
"aikido",
"code-coverage",
"lcov",
"security"
],
"license": "MIT",
"overrides": {
"undici@<=7.29.0": "7.29.0"
},
"dependencies": {
"@actions/core": "3.0.1",
"@actions/http-client": "4.0.1",
"ignore": "^7.0.8"
},
"devDependencies": {
"@github/local-action": "7.0.1",
"@vercel/ncc": "0.44.0",
"eslint": "8.57.1",
"jest": "29.7.0",
"prettier": "3.9.3"
}
}