-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.25 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.25 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
{
"name": "flowshield",
"version": "1.0.4",
"type": "module",
"description": "Zero-dependency, TypeScript-first resilience & fault-tolerance toolkit. Composable policies: retry, circuit breaker, timeout, bulkhead, fallback, rate limiter, hedge, cache.",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:types": "tsc -p tsconfig.types.json",
"build": "npm run clean && npm run build:esm && npm run build:cjs && npm run build:types",
"clean": "node -e \"const fs=require('fs');if(fs.existsSync('dist'))fs.rmSync('dist',{recursive:true})\"",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src/ --ext .ts",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run lint && npm run typecheck && npm run test:coverage && npm run build"
},
"keywords": [
"resilience",
"fault-tolerance",
"retry",
"circuit-breaker",
"timeout",
"bulkhead",
"fallback",
"rate-limiter",
"hedge",
"cache",
"typescript",
"zero-dependency",
"composable",
"microservices",
"error-handling",
"exponential-backoff",
"polly",
"cockatiel",
"fault-tolerant",
"resilient",
"policies",
"edge-runtime"
],
"author": "Avinash Velu <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Avinashvelu03/flowshield.git"
},
"bugs": {
"url": "https://github.com/Avinashvelu03/flowshield/issues"
},
"homepage": "https://github.com/Avinashvelu03/flowshield#readme",
"devDependencies": {
"@vitest/coverage-v8": "^3.1.1",
"eslint": "^8.57.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"typescript": "^5.7.0",
"vitest": "^3.1.1"
},
"engines": {
"node": ">=18.0.0"
},
"sideEffects": false
}