executable-stories-jest 2.0.0 → 3.1.1

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.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/binding.gyp +9 -0
  3. package/index.js +1 -0
  4. package/package.json +18 -12
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "executable-stories-jest",
3
- "version": "2.0.0",
3
+ "version": "3.1.1",
4
4
  "description": "BDD-style executable stories for Jest with documentation generation",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -27,26 +27,27 @@
27
27
  "files": [
28
28
  "dist"
29
29
  ],
30
- "scripts": {
31
- "build": "tsup",
32
- "type-check": "tsc --noEmit",
33
- "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --config jest.config.mjs --passWithNoTests"
34
- },
35
30
  "peerDependencies": {
36
- "jest": ">=30.2.0"
31
+ "jest": ">=30.2.0",
32
+ "executable-stories-formatters": "^0.2.0"
37
33
  },
38
34
  "dependencies": {
39
- "executable-stories-formatters": "workspace:*",
40
35
  "fast-glob": "^3.3.3"
41
36
  },
42
37
  "devDependencies": {
43
38
  "@jest/globals": "^30.2.0",
44
39
  "@types/jest": "^30.0.0",
45
- "@types/node": "^25.2.1",
40
+ "@types/node": "^25.2.3",
46
41
  "jest": "^30.2.0",
47
42
  "ts-jest": "^29.4.6",
48
43
  "tsup": "^8.5.1",
49
- "typescript": "~5.9.3"
44
+ "typescript": "~5.9.3",
45
+ "executable-stories-formatters": "0.2.0"
46
+ },
47
+ "repository": {
48
+ "type": "git",
49
+ "url": "git+https://github.com/jagreehal/executable-stories.git",
50
+ "directory": "packages/executable-stories-jest"
50
51
  },
51
52
  "keywords": [
52
53
  "jest",
@@ -54,5 +55,10 @@
54
55
  "testing",
55
56
  "documentation",
56
57
  "executable-stories"
57
- ]
58
- }
58
+ ],
59
+ "scripts": {
60
+ "build": "tsup",
61
+ "type-check": "tsc --noEmit",
62
+ "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --config jest.config.mjs --passWithNoTests"
63
+ }
64
+ }