-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
63 lines (63 loc) · 1.59 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
{
"name": "@luckbox/mq-clients",
"version": "1.2.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist/ && tsc -d",
"dev": "tsc-watch --onSuccess \"node ./dist/index.js\"",
"test": "jest",
"test:watch": "jest --watchAll --coverage=false",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"lint:staged": "lint-staged",
"prepublishOnly": "npm run build",
"precommit": "npm run lint:staged"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@luckbox/eslint-rules": "^5.0.2",
"@types/amqplib": "^0.8.2",
"@types/core-js": "^2.5.2",
"@types/jest": "^29.2.0",
"@types/lodash": "^4.14.155",
"@types/p-queue": "^3.2.1",
"@typescript-eslint/parser": "^2.17.0",
"coveralls": "^3.1.0",
"eslint": "^6.8.0",
"husky": "^4.0.10",
"jest": "^29.2.1",
"lint-staged": "^10.0.1",
"lodash": "^4.17.20",
"ts-essentials": "^6.0.5",
"ts-jest": "^29.0.3",
"tsc-watch": "^4.1.0",
"typescript": "^4.6.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit",
"pre-push": "npm audit"
}
},
"lint-staged": {
"*.ts": [
"eslint --cache --fix",
"git add"
]
},
"dependencies": {
"@luckbox/logger-factory": "^4.0.0",
"amqplib": "^0.10.3",
"p-queue": "^6.2.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LuckboxGG/mq-clients.git"
},
"bugs": {
"url": "https://github.com/LuckboxGG/mq-clients/issues"
},
"homepage": "https://github.com/LuckboxGG/mq-clients#readme"
}