-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.53 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
{
"name": "@flaky-api/server",
"version": "0.1.0",
"private": true,
"description": "Adversarial mock API for stress-testing frontend cache strategies (React Query, SWR, Apollo, RTK Query).",
"type": "module",
"bin": {
"flaky-api": "./dist/cli.js"
},
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./scenarios": "./dist/scenarios/index.js"
},
"files": [
"dist",
"examples",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.ts",
"start": "node dist/cli.js",
"typecheck": "tsc --noEmit",
"test": "tsx --test test/*.test.ts",
"demo": "tsx src/cli.ts --port 4000 --scenarios examples/basic.yaml --demo-upstream",
"prepublishOnly": "npm run build"
},
"keywords": [
"react-query",
"swr",
"apollo",
"rtk-query",
"cache",
"cache-invalidation",
"chaos-engineering",
"fault-injection",
"mock-api",
"testing",
"msw",
"network-simulation",
"optimistic-updates",
"server-state"
],
"homepage": "https://www.frontendcache.com",
"repository": {
"type": "git",
"url": "git+https://github.com/frontendcache/flaky-api.git"
},
"bugs": {
"url": "https://github.com/frontendcache/flaky-api/issues"
},
"license": "MIT",
"engines": {
"node": ">=20"
},
"dependencies": {
"picomatch": "^4.0.2",
"yaml": "^2.6.0"
},
"devDependencies": {
"@types/node": "^22.10.0",
"@types/picomatch": "^3.0.2",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
}
}