-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.56 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
{
"name": "star-amqp",
"version": "0.0.9",
"description": "An easy to use RabbitMQ/AMQP module.",
"main": "dist/index.js",
"scripts": {
"build": "babel src -d dist",
"prepublish": "npm run build",
"lint": "eslint . || true",
"flow": "flow check --strip-root",
"test": "mocha --require @babel/register test/test.js || true",
"coverage": "istanbul cover _mocha -- --reporter spec --require @babel/register",
"prettier": "prettier --list-different \"**/*.{js,ts,json,md}\"",
"prettier:fix": "prettier --write \"**/*.{js,ts,json,md}\""
},
"author": "Mikael Lirbank",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/lirbank/star-amqp.git"
},
"keywords": [
"amqp",
"rabbitmq",
"promise"
],
"bugs": {
"url": "https://github.com/lirbank/star-amqp/issues"
},
"homepage": "https://github.com/lirbank/star-amqp#readme",
"files": [
"dist"
],
"devDependencies": {
"@babel/eslint-parser": "^7.15.8",
"@babel/core": "^7.15.8",
"@babel/register": "^7.15.3",
"@babel/preset-flow": "^7.14.5",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"eslint": "^7.5.0",
"flow-bin": "^0.107.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"prettier": "1.17.0",
"source-map-support": "^0.4.8"
},
"dependencies": {
"amqplib": "^0.8.0",
"@babel/cli": "^7.15.7",
"@babel/plugin-transform-flow-strip-types": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/runtime": "^7.15.4"
}
}