-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.81 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
{
"name": "elmermq",
"version": "1.2.3",
"description": "Hunting the RabbitMQ - amqplib wrapper with auto-reconnect and channel pooling",
"author": "Csaba Sulyok <[email protected]>",
"license": "ISC",
"main": "./src/index.ts",
"types": "./src/index.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/csabasulyok/elmermq.git"
},
"publishConfig": {
"main": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"scripts": {
"clean": "rimraf dist *.tsbuildinfo",
"build": "tsc -p tsconfig.build.json",
"cb": "pnpm clean && pnpm build",
"lint": "eslint 'src/**/*.ts' --quiet --fix",
"format": "prettier --write '**/*.ts' --config ./.prettierrc.yml",
"ci": "pnpm lint && pnpm format && pnpm build",
"publish:local": "pnpm publish --verbose --registry=http://localhost:8081/repository/npm-releases/",
"publish:npmjs": "pnpm publish --verbose --registry=https://registry.npmjs.org/"
},
"dependencies": {
"amqplib": "0.10.3",
"auto-bind": "4.0.0",
"extol": "1.2.3",
"yall2": "1.2.2"
},
"devDependencies": {
"@types/amqplib": "0.8.2",
"@types/node": "18.7.18",
"@typescript-eslint/eslint-plugin": "5.38.0",
"@typescript-eslint/parser": "5.38.0",
"eslint": "8.23.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "3.5.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"ts-node": "10.9.1",
"typescript": "4.8.3"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"npm run lint",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}