-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
81 lines (81 loc) · 1.76 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "blackfyre",
"version": "0.2.0",
"description": "Distributed asynchronous task queue/job queue",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"scripts": {
"test": "tsc && ava -v",
"coverage": "nyc npm test",
"coverage-ci": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"build": "tsc",
"clean": "rm -rf dist/*",
"lint": "tslint --format prose src/**/*.ts test/**/*.ts"
},
"keywords": [
"rabbitmq",
"amqp",
"producer",
"consumer",
"worker",
"job",
"task",
"queue",
"asynchronous",
"distributed system",
"job-queue"
],
"repository": {
"type": "git",
"url": "https://github.com/xizhibei/blackfyre"
},
"homepage": "https://github.com/xizhibei/blackfyre",
"bugs": "https://github.com/xizhibei/blackfyre/issues",
"author": "Xu Zhipei <xuzhipei@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=4"
},
"ava": {
"files": [
"dist/test/**/*.test.js"
],
"timeout": "10s"
},
"nyc": {
"extension": [
".ts"
],
"reporter": [
"lcov",
"text-summary"
],
"include": [
"dist/src"
],
"all": true
},
"dependencies": {
"amqplib": "^0.5.1",
"bluebird": "^3.5.0",
"debug": "^3.1.0",
"lodash": "^4.17.4",
"mongodb": "^3.0.1",
"uuid": "^3.1.0"
},
"devDependencies": {
"@types/amqplib": "^0.5.6",
"@types/bluebird": "^3.5.19",
"@types/bluebird-global": "^3.5.3",
"@types/lodash": "^4.14.91",
"@types/mongodb": "^3.0.0",
"@types/node": "^8.5.5",
"@types/uuid": "^3.4.3",
"ava": "^0.24.0",
"coveralls": "^3.0.0",
"nyc": "^11.4.1",
"prom-client": "^10.2.2",
"tslint": "^5.8.0",
"typescript": "^2.6.2"
}
}