forked from amqp/rhea-promise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.42 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
{
"name": "rhea-promise",
"version": "3.0.1",
"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": "^3.1.0",
"rhea": "^3.0.0",
"tslib": "^2.2.0"
},
"keywords": [
"amqp",
"rhea",
"promise",
"amqp-10",
"messaging"
],
"devDependencies": {
"@azure/abort-controller": "^1.0.1",
"@types/chai": "^4.2.11",
"@types/debug": "^0.0.31",
"@types/dotenv": "^6.1.1",
"@types/mocha": "^7.0.2",
"@types/node": "^8.0.37",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"chai": "^4.2.0",
"dotenv": "^8.0.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jsdoc": "^46.2.6",
"mocha": "^6.2.3",
"rimraf": "^2.6.3",
"ts-node": "^8.2.0",
"typescript": "~5.0.4"
},
"scripts": {
"lint": "eslint .",
"tsc": "tsc",
"prebuild": "rimraf dist && rimraf typings",
"build": "npm run lint && npm run tsc",
"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"
}
}