-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.59 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
{
"name": "qdone",
"version": "1.7.1",
"description": "Language agnostic job queue for SQS",
"main": "index.js",
"dependencies": {
"aws-sdk": "^2.580.0",
"chalk": "^2.4.1",
"command-line-args": "^5.0.2",
"command-line-commands": "^2.0.1",
"command-line-usage": "5.0.5",
"debug": "^4.1.0",
"ioredis": "^4.14.0",
"q": "^1.5.1",
"tree-kill": "^1.2.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"aws-sdk-mock": "^4.5.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.4",
"mocha": "^6.1.4",
"mock-stdin": "^0.3.1",
"nyc": "^14.1.1",
"sinon": "^7.3.2",
"standard": "*",
"strip-ansi": "^5.0.0"
},
"bin": "./qdone",
"preferGlobal": true,
"engines": {
"node": ">=6"
},
"scripts": {
"test": "standard && nyc mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"standard": "standard",
"prep-for-publish": "npm shrinkwrap && echo now commit shrinkwrap and use npm run publish-{next,latest}",
"publish-latest": "npm publish --tag latest",
"publish-next": "npm publish --tag next"
},
"author": "Ryan Witt",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/suredone/qdone.git"
},
"keywords": [
"sqs",
"job",
"queue",
"cli",
"command line",
"aws",
"producer",
"consumer",
"amazon"
],
"greenkeeper": {
"ignore": [
"command-line-usage"
]
},
"bugs": {
"url": "https://github.com/suredone/qdone/issues"
},
"homepage": "https://github.com/suredone/qdone#readme"
}