-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.97 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
{
"name": "amqpator",
"version": "2.0.0",
"description": "Wrapper for amqplib which simplifies its usage for publishing and subscribing",
"keywords": [
"amqp",
"amqplib",
"pub",
"rabbitmq",
"sub"
],
"repository": {
"type": "git",
"url": "https://github.com/LordotU/amqpator"
},
"license": "MIT",
"author": "Oleg Levshin <[email protected]>",
"main": "dist/index.js",
"types": "dist/@types/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"docs": "rm -rf ./docs && typedoc --entryPoints ./src/index.ts --plugin typedoc-plugin-markdown --readme none",
"lint": "eslint -c ./.eslintrc.js ./src/**/*.{js,ts}",
"pre-commit": "lint-staged",
"prepublish": "npm run tsc",
"test": "npm run test:jest && npm run test:coverage",
"test:jest": "jest --detectOpenHandles --runInBand",
"test:coverage": "cat ./__tests__/coverage/lcov.info | coveralls",
"tsc": "rm -rf ./dist && tsc -p tsconfig.json"
},
"lint-staged": {
"*.{js,ts}": [
"eslint -c ./.eslintrc.js",
"git add"
]
},
"config": {
"pre-git": {
"allow-untracked-files": true,
"pre-commit": [
"npm run pre-commit"
]
}
},
"dependencies": {
"@types/amqplib": "^0.5.17",
"nanodelay": "^1.0.8",
"nanoid": "^3.1.22"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"coveralls": "^3.1.0",
"eslint": "^7.24.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"got": "^11.8.2",
"jest": "^26.6.3",
"jsdoc-to-markdown": "^6.0.1",
"lint-staged": "^10.5.4",
"pre-git": "^3.17.1",
"ts-jest": "^26.5.6",
"typedoc": "^0.20.36",
"typedoc-plugin-markdown": "^3.8.1",
"typescript": "^4.2.4"
},
"peerDependencies": {
"amqplib": "^0.5.5 || ^0.6 || ^0.7"
},
"release": {
"analyzeCommits": "simple-commit-message"
}
}