-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.19 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.19 KB
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
{
"name": "nodezoo-dequeue",
"version": "1.0.2",
"description": "A message dequeuer for nodezoo",
"scripts": {
"start": "node srv/start.js",
"lint": "lab -P test -dL",
"test": "lab -v -P test -L -t 80"
},
"main": "lib/dequeue.js",
"keywords": [
"nodezoo",
"seneca",
"microservice"
],
"author": "GeGe Pincin (github.com/Georgette)",
"contributors": [
"Shane Lacey (github.com/shanel262)"
],
"files": [
"README.md",
"package.json",
"LICENSE",
"srv",
"lib",
"Dockerfile"
],
"homepage": "https://github.com/nodezoo/nodezoo-dequeue#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/nodezoo/nodezoo-dequeue.git"
},
"bugs": {
"url": "https://github.com/nodezoo/nodezoo-dequeue/issues"
},
"license": "MIT",
"dependencies": {
"seneca": "2.0.1",
"seneca-balance-client": "0.5.x",
"seneca-entity": "0.0.1",
"seneca-mesh": "0.7.0",
"seneca-redis-queue-transport": "0.3.0"
},
"devDependencies": {
"code": "2.2.0",
"coveralls": "2.11.9",
"eslint-config-seneca": "1.1.2",
"eslint-plugin-hapi": "4.0.0",
"eslint-plugin-standard": "1.3.2",
"lab": "10.3.1"
}
}