-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
29 lines (29 loc) · 933 Bytes
/
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
{
"name": "bull-amqp",
"version": "1.9.5",
"description": "A (almost) drop-in replacement for the Bull queue, backed by the AMQP protocol",
"main": "lib/index.js",
"repository": "https://github.com/wherefortravel/bull-amqp",
"author": "David Xu",
"license": "MIT",
"dependencies": {
"amqp-connection-manager": "^2.3.0",
"amqplib": "^0.7.1",
"babel-runtime": "^6.26.0",
"bluebird": "^3.5.1",
"lodash": "^4.17.13"
},
"scripts": {
"build": "rm -rf ./lib && babel src --out-dir lib --copy-files",
"prepublish": "yarn build"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0"
}
}