-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.15 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.15 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "dripfeed",
"version": "0.1.2",
"type": "module",
"description": "Soak test CLI for APIs. Hits endpoints at intervals for hours, logs results to SQLite, fails CI on threshold breaches.",
"bin": {
"dripfeed": "./dist/cli.mjs"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
},
"files": [
"dist",
"AGENTS.md"
],
"engines": {
"node": ">=20"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ph33nx/dripfeed.git"
},
"homepage": "https://github.com/ph33nx/dripfeed#readme",
"bugs": {
"url": "https://github.com/ph33nx/dripfeed/issues"
},
"keywords": [
"soak-test",
"soak-testing",
"api-testing",
"api-monitor",
"api-monitoring",
"api-uptime",
"uptime",
"uptime-monitor",
"synthetic-monitoring",
"synthetic-monitor",
"endpoint-monitor",
"health-check",
"api-health-check",
"http-monitor",
"http-testing",
"endurance-test",
"load-test",
"stress-test",
"reliability-testing",
"sqlite",
"api-reliability",
"latency-monitor",
"cli",
"devops",
"ci-cd",
"performance-testing",
"endurance-testing",
"stability-testing",
"memory-leak-detection",
"resource-exhaustion",
"latency-degradation",
"http-client"
],
"scripts": {
"build": "tsdown",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"check": "biome check . --fix",
"dev": "bun run src/cli.ts",
"prepublishOnly": "bun run build"
},
"dependencies": {
"c12": "^4.0.0-beta.4",
"citty": "^0.2.1",
"jiti": "^2.6.1",
"zod": "^4.3.6"
},
"peerDependencies": {
"better-sqlite3": ">=11"
},
"peerDependenciesMeta": {
"better-sqlite3": {
"optional": true
}
},
"devDependencies": {
"@biomejs/biome": "^2.4.9",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.5.0",
"lefthook": "^2.1.4",
"tsdown": "^0.21.7",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
}
}