-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
63 lines (63 loc) · 1.6 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": "rhea-promise",
"version": "3.0.3",
"description": "A Promisified layer over rhea AMQP client",
"license": "Apache-2.0",
"main": "./dist/lib/index.js",
"types": "./typings/lib/index.d.ts",
"dependencies": {
"debug": "^4.0.0",
"rhea": "^3.0.0",
"tslib": "^2.6.0"
},
"keywords": [
"amqp",
"rhea",
"promise",
"amqp-10",
"messaging"
],
"files": [
"dist/lib/",
"lib/",
"typings/lib/",
"README.md",
"LICENSE"
],
"devDependencies": {
"@azure/abort-controller": "^1.0.1",
"@microsoft/api-extractor": "^7.47.9",
"@types/chai": "^4.3.7",
"@types/debug": "^4.0.0",
"@types/mocha": "^10.0.0",
"@types/node": "^16.0.0",
"@typescript-eslint/eslint-plugin": "~7.8.0",
"@typescript-eslint/parser": "~7.8.0",
"chai": "^4.3.10",
"dotenv": "^16.0.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jsdoc": "^46.2.6",
"mocha": "^10.0.0",
"rimraf": "^5.0.5",
"ts-node": "^10.0.0",
"typescript": "~5.0.4"
},
"scripts": {
"lint": "eslint .",
"tsc": "tsc",
"prebuild": "rimraf dist && rimraf typings",
"build": "npm run lint && npm run tsc && npm run extract-api",
"extract-api": "api-extractor run --local",
"test": "npm run build && mocha -r ts-node/register ./test/*.spec.ts",
"prepack": "npm i && npm run build"
},
"homepage": "https://github.com/amqp/rhea-promise",
"repository": {
"type": "git",
"url": "https://github.com/amqp/rhea-promise.git"
},
"bugs": {
"url": "http://github.com/amqp/rhea-promise/issues"
}
}