-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.43 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.43 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
{
"name": "@flakiness/sdk",
"version": "3.3.1",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/flakiness/nodejs-sdk.git"
},
"exports": {
".": {
"types": "./types/src/index.d.ts",
"import": "./lib/index.js",
"require": "./lib/index.js"
},
"./browser": {
"types": "./types/src/browser.d.ts",
"import": "./lib/browser.js",
"require": "./lib/browser.js"
}
},
"type": "module",
"description": "Comprehensive SDK for creating and managing Flakiness JSON Reports in Node.js",
"types": "./types/index.d.ts",
"scripts": {
"minor": "./version.mjs minor",
"patch": "./version.mjs patch",
"test": "pnpm playwright test",
"build": "kubik ./build.mts"
},
"keywords": [],
"author": "Degu Labs, Inc",
"license": "MIT",
"engines": {
"node": "^20.17.0 || >=22.9.0"
},
"devDependencies": {
"@flakiness/flakiness-report": "^0.34.0",
"@flakiness/playwright": "^1.3.3",
"@playwright/test": "^1.58.2",
"@types/debug": "^4.1.12",
"@types/node": "^25.0.3",
"@types/which": "^3.0.4",
"esbuild": "^0.27.0",
"kubik": "^0.24.0",
"tsx": "^4.21.0",
"typescript": "^5.6.2"
},
"peerDependencies": {
"@flakiness/flakiness-report": ">=0.26.0 <1.0.0"
},
"dependencies": {
"debug": "^4.4.3",
"open": "^10.2.0",
"stable-hash": "^0.0.6",
"which": "^6.0.1",
"zod": "^4.3.5"
}
}