executable-stories-formatters 0.1.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,77 @@
1
+ {
2
+ "name": "executable-stories-formatters",
3
+ "version": "0.1.0",
4
+ "description": "Cucumber-compatible report formats (HTML, Markdown, JUnit XML, Cucumber JSON) for executable-stories test results.",
5
+ "author": "Jag Reehal <jag@jagreehal.com>",
6
+ "license": "MIT",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/jagreehal/executable-stories.git",
10
+ "directory": "packages/executable-stories-formatters"
11
+ },
12
+ "homepage": "https://github.com/jagreehal/executable-stories#readme",
13
+ "bugs": {
14
+ "url": "https://github.com/jagreehal/executable-stories/issues"
15
+ },
16
+ "type": "module",
17
+ "sideEffects": false,
18
+ "main": "./dist/index.cjs",
19
+ "module": "./dist/index.js",
20
+ "types": "./dist/index.d.ts",
21
+ "exports": {
22
+ ".": {
23
+ "types": "./dist/index.d.ts",
24
+ "import": "./dist/index.js",
25
+ "require": "./dist/index.cjs"
26
+ },
27
+ "./adapters": {
28
+ "types": "./dist/adapters.d.ts",
29
+ "import": "./dist/adapters.js",
30
+ "require": "./dist/adapters.cjs"
31
+ }
32
+ },
33
+ "bin": {
34
+ "executable-stories": "./dist/cli.js"
35
+ },
36
+ "files": [
37
+ "dist",
38
+ "schemas"
39
+ ],
40
+ "engines": {
41
+ "node": ">=22"
42
+ },
43
+ "keywords": [
44
+ "executable-stories",
45
+ "bdd",
46
+ "testing",
47
+ "documentation",
48
+ "cucumber",
49
+ "html",
50
+ "markdown",
51
+ "junit",
52
+ "report",
53
+ "formatter"
54
+ ],
55
+ "scripts": {
56
+ "build": "tsup",
57
+ "test": "vitest run",
58
+ "test:watch": "vitest",
59
+ "type-check": "tsc --noEmit",
60
+ "generate:design-library": "tsx scripts/generate-design-library.ts",
61
+ "compile": "bun build src/cli.ts --compile --outfile executable-stories"
62
+ },
63
+ "dependencies": {
64
+ "@cucumber/html-formatter": "^23.0.0",
65
+ "@cucumber/messages": "^32.0.1",
66
+ "ajv": "^8.17.1"
67
+ },
68
+ "devDependencies": {
69
+ "@faker-js/faker": "^10.2.0",
70
+ "@types/node": "^25.2.1",
71
+ "tsup": "^8.5.1",
72
+ "tsx": "^4.21.0",
73
+ "typescript": "~5.9.3",
74
+ "vitest": "^4.0.18",
75
+ "vitest-mock-extended": "^3.1.0"
76
+ }
77
+ }