-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
57 lines (57 loc) · 1.53 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
{
"name": "fastmq",
"version": "1.3.7",
"description": "High performance message broker implementation for node.js with multiple network transports support.",
"keywords": [
"message",
"broker",
"message broker",
"ipc",
"queue"
],
"engines": {
"node": ">=10.0.0"
},
"main": "lib/index.js",
"author": "Arlo Liu <arlo.liu@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/arloliu/fastmq"
},
"bugs": {
"type": "git",
"url": "https://github.com/arloliu/fastmq/issues"
},
"homepage": "https://github.com/arloliu/fastmq",
"scripts": {
"build": "babel --no-comments -d lib/ src/",
"watch": "babel -w --no-comments -d lib/ src/",
"eslint": "eslint src examples"
},
"dependencies": {
"@babel/runtime": "^7.3.4",
"bluebird": "^3.5.3",
"buffer-plus": "^1.1.1",
"double-ended-queue": "^2.1.0-0",
"eventemitter3": "^3.1.0",
"glob-to-regexp": "^0.4.0",
"is-regex": "^1.0.5",
"lodash": "^4.17.20",
"minimist": "^1.2.5",
"node-int64": "^0.4.0",
"semver": "^7.1.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.3.4",
"@babel/plugin-transform-async-to-generator": "^7.3.4",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/plugin-transform-template-literals": "^7.2.0",
"@babel/preset-env": "^7.3.4",
"babel-loader": "^8.0.5",
"eslint": "^5.15.2",
"eslint-config-google": "^0.12.0"
}
}