-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.33 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
{
"name": "carrotmq",
"version": "8.0.2",
"description": "easy way to use rabbitmq",
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"engines": {
"node": ">=16"
},
"scripts": {
"test": "mocha test/index.js",
"build": "tsc",
"prepublishOnly": "npm run build",
"doc": "typedoc --out docs src && touch docs/.nojekyll"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/bangbang93/carrotmq.git"
},
"keywords": [
"rabbitmq",
"amqp",
"amqplib"
],
"author": "bangbang93",
"license": "MIT",
"bugs": {
"url": "https://github.com/bangbang93/carrotmq/issues"
},
"homepage": "https://github.com/bangbang93/carrotmq#readme",
"dependencies": {
"@sindresorhus/is": "^4.6.0",
"@types/amqplib": "^0.8.2",
"@types/bluebird": "^3.5.36",
"@types/node": "^14.14.25",
"amqplib": "^0.8.0",
"bluebird": "^3.7.2",
"nanoid": "^3.3.1",
"verror": "^1.10.1"
},
"devDependencies": {
"@bangbang93/eslint-config-recommended": "^0.0.1",
"@types/mocha": "^5.0.0",
"@types/verror": "^1.10.5",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.17.0",
"mocha": "^10.2.0",
"should": "^13.2.1",
"ts-node": "^8.8.1",
"typedoc": "^0.15.2",
"typescript": "^4.7.3"
}
}