-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.03 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
{
"name": "amqp-as-promised",
"description": "A promise-based AMQP API build on node-amqp",
"version": "5.7.0",
"repository": {
"type": "git",
"url": "https://github.com/ttab/amqp-as-promised"
},
"main": "lib/index",
"types": "./amqp-as-promised.d.ts",
"scripts": {
"test": "mocha",
"lint": "coffeelint src",
"prepare": "coffee -o lib -c src"
},
"keywords": [
"amqp",
"promises",
"q"
],
"files": [
"**/*.js",
"amqp-as-promised.d.ts"
],
"author": "Martin Algesten <[email protected]>",
"contributors": [
"Fredrik Appelberg <[email protected]>"
],
"license": "MIT",
"dependencies": {
"amqplib": "^0.10",
"lodash.clone": "^4.5.0",
"loglevel": "^1.7.0",
"mem-cache": "0.0.5",
"uuid": "~2.0.1"
},
"devDependencies": {
"chai": "^4",
"chai-as-promised": "^7.0.0",
"chai-like": "^1",
"@coffeelint/cli": "^5",
"coffeescript": "^2",
"mocha": "^10.0.0",
"proxyquire": "^2",
"sinon": "^7",
"sinon-chai": "^3"
}
}