-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
47 lines (47 loc) · 1.14 KB
/
package.json
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
{
"name": "circuit-breaker-monad",
"version": "1.0.1",
"description": "Circuit Breaker pattern as a monad",
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"test": "mocha --timeout 5000 -r ts-node/register src/**/*.test.ts",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/YBogomolov/circuit-breaker-monad.git"
},
"keywords": [
"circuit",
"breaker",
"typescript",
"monad"
],
"author": "Yuriy Bogomolov <yuriy.bogomolov@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/YBogomolov/circuit-breaker-monad/issues"
},
"homepage": "https://github.com/YBogomolov/circuit-breaker-monad#readme",
"peerDependencies": {
"fp-ts": "^1.18.2 || ^2"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/fetch-mock": "^7.3.0",
"@types/mocha": "^9.0.0",
"chai": "^4.2.0",
"fetch-mock": "^9.0.0",
"fp-ts": "^2.0.5",
"mocha": "^9.0.3",
"node-fetch": "^3.0.0",
"ts-node": "^9.0.0",
"tslint": "^5.11.0",
"tslint-sonarts": "^1.8.0",
"typescript": "^3.5.1"
}
}