@testream/mocha-reporter 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,63 @@
1
+ {
2
+ "name": "@testream/mocha-reporter",
3
+ "version": "1.0.0",
4
+ "description": "Mocha reporter to upload test results to Testream",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "scripts": {
8
+ "build": "npm run build:bundle && npm run build:types",
9
+ "build:bundle": "ncc build src/index.ts -o dist --minify",
10
+ "build:types": "tsc --declaration --emitDeclarationOnly --outDir dist",
11
+ "format": "prettier --write '**/*.ts'",
12
+ "lint": "eslint src/**/*.ts",
13
+ "prepublishOnly": "npm run build",
14
+ "test": "echo \"No tests yet\" && exit 0",
15
+ "all": "npm run format && npm run lint && npm run build"
16
+ },
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "git+https://github.com/testream/docs.git"
20
+ },
21
+ "keywords": [
22
+ "mocha",
23
+ "reporter",
24
+ "testing",
25
+ "test-management",
26
+ "test-results",
27
+ "jira",
28
+ "ctrf",
29
+ "testream"
30
+ ],
31
+ "author": "Testream",
32
+ "license": "SEE LICENSE IN LICENSE",
33
+ "publishConfig": {
34
+ "access": "public"
35
+ },
36
+ "dependencies": {
37
+ "mocha-ctrf-json-reporter": "^0.0.10"
38
+ },
39
+ "peerDependencies": {
40
+ "mocha": ">=8.0.0"
41
+ },
42
+ "devDependencies": {
43
+ "@jira-test-manager/shared-types": "*",
44
+ "@types/mocha": "^10.0.0",
45
+ "@types/node": "^20.10.6",
46
+ "@typescript-eslint/eslint-plugin": "^6.17.0",
47
+ "@typescript-eslint/parser": "^6.17.0",
48
+ "@vercel/ncc": "^0.38.1",
49
+ "eslint": "^8.56.0",
50
+ "mocha": "^10.0.0",
51
+ "prettier": "^3.1.1",
52
+ "typescript": "^5.3.3"
53
+ },
54
+ "engines": {
55
+ "node": ">=18.0.0"
56
+ },
57
+ "files": [
58
+ "dist",
59
+ "README.md",
60
+ "LICENSE",
61
+ "THIRD_PARTY_NOTICES.md"
62
+ ]
63
+ }