-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
86 lines (86 loc) · 2.39 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
82
83
84
85
86
{
"name": "worqr",
"version": "1.2.3",
"description": "A distributed, reliable, atomic, work queueing system that only requires redis as the backend.",
"desqription": "Worqr does all ur worq. I can haz worq? No... All ur worq are belong to worqr.",
"keywords": [
"azure",
"redis",
"queue",
"work queue",
"worker queue",
"rabbitmq",
"message queue",
"message broker",
"amazon sqs",
"celery",
"activemq",
"zeromq",
"kafka",
"amqp"
],
"homepage": "https://github.com/droplit/worqr",
"bugs": {
"url": "https://github.com/droplit/worqr/issues",
"email": "[email protected]"
},
"main": "dist/index",
"types": "dist/index",
"scripts": {
"build": "npm run tslint && tsc -b -v",
"docs": "typedoc --excludePrivate --out docs src",
"example_pub": "ts-node -r dotenv/config ./test/example_pub.ts",
"example_sub": "ts-node -r dotenv/config ./test/example_sub.ts",
"prepack": "npm run build",
"test": "nyc mocha --exit -r ts-node/register -r source-map-support/register -r dotenv/config ./test/test.ts",
"tslint": "tslint -t stylish 'src/**/*.ts' --force"
},
"author": "Droplit, Inc. (https://droplit.io)",
"contributors": [
"Bryan Jenks",
"Samir Mammadov",
"Davis Kauffmann",
"Jake Ferrante"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/droplit/worqr.git"
},
"engines": {
"node": ">=6.4.0",
"npm": ">=3.10.10"
},
"dependencies": {
"@types/debug": "^4.1.3",
"@types/redis": "^2.8.6",
"@types/uuid": "^3.4.3",
"debug": "^3.1.0",
"redis": "^2.8.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.5",
"@types/node": "^9.4.6",
"chai": "^4.1.2",
"dotenv": "^5.0.1",
"mocha": "^5.2.0",
"nyc": "^14.1.1",
"source-map-support": "^0.5.13",
"ts-node": "^6.1.0",
"tslint": "^5.11.0",
"typedoc": "^0.13.0",
"typescript": "^4.0.2"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts"
],
"all": true
}
}