-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.08 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.08 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
{
"name": "mocha-circleci-coverage",
"version": "0.1.2",
"description": "Mocha plugin for CircleCI per-test coverage collection",
"type": "module",
"main": "src/index.ts",
"scripts": {
"build": "tsc",
"test": "mocha '**/*.test.ts'",
"test:ci": "mocha --reporter=default --reporter=junit --outputFile=junit.xml",
"lint": "oxlint --quiet",
"format": "prettier . --check",
"generate": "circleci run testsuite 'integration test' --local --test-analysis=all && cat coverage.json | jq > coveragetmp.json && mv coveragetmp.json coverage.json",
"generate:ci": "circleci run testsuite 'integration test' --test-analysis=all && cat coverage.json | jq > coveragetmp.json && mv coveragetmp.json coverage.json"
},
"devDependencies": {
"@prettier/plugin-oxc": "^0.1.3",
"@types/mocha": "^10.0.10",
"@types/node": "^25.2.2",
"mocha": "^11.7.5",
"oxlint": "^1.43.0",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@circleci/v8-coverage-collector": "npm:@jsr/circleci__v8-coverage-collector@0.1.2"
}
}