-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.31 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
{
"name": "ts-amqp",
"version": "0.8.1",
"description": "An AMQP client library in pure TypeScript",
"main": "dist/index.js",
"engines": {
"node": ">=14.0.0"
},
"keywords": [
"amqp",
"amqp0-9-1",
"amqp-client",
"rabbitmq",
"nodejs",
"typescript"
],
"dependencies": {
"async-mutex": "^0.2.3",
"debug": "^4.1.1",
"lodash": "^4.17.21"
},
"files": [
"dist",
"types"
],
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/debug": "^4.1.5",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.14",
"@types/sinon": "^7.5.2",
"@types/sinon-chai": "^3.2.4",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"chai": "^4.2.0",
"eslint": "^7.3.1",
"mocha": "^8.0.1",
"nyc": "^15.1.0",
"prettier": "^2.0.5",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0",
"ts-node": "^8.10.2",
"typescript": "3.9.5"
},
"scripts": {
"test": "nyc mocha test/**/*.test.ts",
"prepublishOnly": "npx tsc"
},
"nyc": {
"include": [
"**/*.ts"
],
"exclude": [
"test/**/*"
],
"extension": [
".ts"
],
"reporter": [
"lcov",
"text",
"html"
]
},
"author": "Abbas Mashayekh <[email protected]>",
"license": "MIT"
}