This repository has been archived by the owner on Jun 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.19 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@mansagroup/rabbitmq-fp",
"version": "0.0.6",
"description": "A straightforward RabbitMQ client with fp-ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": "^16 || ^18"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "npm run build:js & npm run build:types",
"build:js": "swc ./src -d dist",
"build:types": "tsc --build ./tsconfig.build.json",
"lint": "eslint \"{src,test}/**/*.{js,ts}\"",
"test": "jest",
"test:cov": "jest --coverage",
"prepare": "husky install",
"prerelease": "npm run build",
"release": "np --message=\"chore: v%s\"",
"depcheck": "depcheck"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MansaGroup/rabbitmq-fp.git"
},
"keywords": [
"rabbitmq",
"client",
"functionnal",
"fp-ts",
"amqp"
],
"author": "Jérémy Levilain <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MansaGroup/rabbitmq-fp/issues"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"header-max-length": [
2,
"always",
85
]
}
},
"homepage": "https://github.com/MansaGroup/rabbitmq-fp#readme",
"devDependencies": {
"@commitlint/cli": "17.1.2",
"@commitlint/config-conventional": "17.1.0",
"@mansagroup/eslint-config": "0.0.2-4",
"@swc/cli": "0.1.57",
"@swc/core": "1.2.197",
"@swc/jest": "0.2.23",
"@types/amqplib": "0.8.2",
"@types/jest": "28.1.8",
"@typescript-eslint/eslint-plugin": "5.27.0",
"@typescript-eslint/parser": "5.27.0",
"axios": "1.1.3",
"depcheck": "1.4.3",
"eslint": "8.25.0",
"husky": "8.0.1",
"jest": "28.1.3",
"jest-extended": "3.1.0",
"jest-sonar": "0.2.12",
"lint-staged": "13.0.3",
"np": "7.6.2",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"testcontainers": "8.15.0",
"ts-jest": "28.0.8",
"typescript": "4.8.4",
"wait-for-expect": "3.0.2"
},
"peerDependencies": {
"fp-ts": ">=2"
},
"dependencies": {
"amqp-connection-manager": "4.1.7",
"amqplib": "0.10.3"
},
"publishConfig": {
"access": "public"
}
}