-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.02 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@mxschmitt/flakiness-node",
"version": "0.1.1",
"description": "Unofficial Flakiness.io reporter for the Node.js test runner",
"type": "module",
"main": "./lib/reporter.cjs",
"types": "./types/src/reporter.d.cts",
"exports": {
".": {
"import": {
"types": "./types/src/reporter.d.ts",
"default": "./lib/reporter.js"
},
"require": {
"types": "./types/src/reporter.d.cts",
"default": "./lib/reporter.cjs"
}
}
},
"files": [
"lib/reporter.cjs",
"lib/reporter.js",
"types/src/node-test-types.d.cts",
"types/src/node-test-types.d.ts",
"types/src/reporter.d.cts",
"types/src/reporter.d.ts",
"LICENSE",
"README.md",
"features.md"
],
"scripts": {
"build": "node build.mjs && tsc --pretty -p . && node build-types.mjs",
"check": "biome check .",
"check:fix": "biome check --write .",
"format": "biome format --write .",
"prepack": "npm run build",
"test": "npm run build && node --import tsx --test --test-concurrency=1 tests/*.test.ts",
"test:dogfood": "npm run build && node --import tsx --test --test-concurrency=1 --test-reporter=spec --test-reporter=./lib/reporter.js --test-reporter-destination=stdout --test-reporter-destination=stdout tests/*.test.ts",
"typecheck": "tsc --pretty -p . --noEmit false",
"pack:check": "npm pack --dry-run"
},
"engines": {
"node": "^20.17.0 || >=22.9.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mxschmitt/flakiness-node.git"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"keywords": [
"flakiness",
"node",
"node:test",
"reporter",
"testing"
],
"devDependencies": {
"@biomejs/biome": "2.5.4",
"@flakiness/flakiness-report": "^0.36.0",
"@flakiness/sdk": "^3.5.0",
"@types/node": "^24.0.0",
"@types/stack-utils": "^2.0.3",
"esbuild": "^0.28.1",
"minimatch": "^10.2.5",
"stack-utils": "^2.0.6",
"tsx": "^4.22.4",
"typescript": "^6.0.3"
}
}