-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.25 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
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
{
"name": "resilient-client",
"version": "0.1.1",
"description": "A resilience http client",
"repository": {
"type": "git",
"url": "https://github.com/cedrick-ah/resilient-client"
},
"author": "cedrick-ah",
"license": "MIT",
"keywords": [
"distributed",
"http",
"resilience"
],
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"scripts": {
"test": "jest --config jest.config.json",
"dev": "rollup -c -w",
"build": "rollup -c",
"build:types": "tsc -p ./tsconfig.json --outDir build --declaration true && api-extractor run",
"docs": "typedoc src --out docs",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"release": "standard-version",
"commit": "cz",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@microsoft/api-extractor": "^7.38.5",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@types/eslint": "^8.56.10",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"@types/nodemailer": "^6.4.15",
"@types/opossum": "^8.1.7",
"@types/request": "^2.48.12",
"@types/request-promise": "^4.1.51",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "7.9.0",
"commitizen": "^4.3.0",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"maildev": "^2.0.5",
"nock": "^13.5.4",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"rollup": "^4.6.1",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.25.4",
"typescript": "^5.4.5"
},
"dependencies": {
"axios": "^1.7.2",
"opossum": "^8.1.4"
}
}