-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.69 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.69 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
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
87
88
89
90
91
92
93
94
95
96
{
"name": "qdone",
"version": "2.2.7",
"description": "A distributed scheduler for SQS",
"type": "module",
"main": "./index.js",
"module": "./index.js",
"bin": "./src/bin.js",
"files": [
"src",
"commonjs",
"index.js"
],
"dependencies": {
"@aws-sdk/client-cloudwatch": "3.465.0",
"@aws-sdk/client-sqs": "3.465.0",
"@sentry/node": "^7.120.4",
"@smithy/node-http-handler": "2.5.0",
"chalk": "^4.1.2",
"command-line-args": "^5.2.1",
"command-line-commands": "^3.0.2",
"command-line-usage": "^7.0.3",
"debug": "^4.4.3",
"ioredis": "^5.9.3",
"tree-kill": "^1.2.2",
"uuid": "^9.0.1"
},
"pnpm": {
"overrides": {
"@smithy/util-endpoints": "1.0.8",
"@smithy/config-resolver": "2.0.21",
"@smithy/middleware-endpoint": "2.2.1",
"@smithy/shared-ini-file-loader": "2.2.7",
"@smithy/middleware-retry": "2.0.21"
}
},
"devDependencies": {
"aws-sdk-client-mock": "^3.1.0",
"aws-sdk-client-mock-jest": "^3.1.0",
"ioredis-mock": "^8.13.1",
"jest": "^29.7.0",
"standard": "^17.1.2",
"typescript": "^5.9.3"
},
"preferGlobal": true,
"engines": {
"node": ">=16"
},
"scripts": {
"start": "./src/bin.js",
"test": "NODE_OPTIONS='--experimental-json-modules --experimental-vm-modules --no-warnings' jest",
"build": "tsc --allowJs index.js --outdir commonjs --esModuleInterop --module commonjs --target es2021 --strict --skipLibCheck --forceConsistentCasingInFileNames",
"clean": "rm -rf commonjs/src commonjs/*.js coverage",
"lint": "standard",
"coverage": "NODE_OPTIONS='--experimental-json-modules --experimental-vm-modules --no-warnings' jest --coverage | coveralls",
"standard": "standard",
"prep-for-publish": "echo YOU MUST USE NPM TO PREP FOR PUBLISH && pnpm run clean && pnpm run build && npm shrinkwrap --production && echo now commit shrinkwrap and use npm run publish-{next,latest}",
"publish-latest": "npm publish --tag latest",
"publish-next": "npm publish --tag next"
},
"author": "SureDone, Inc.",
"contributors": [
"Ryan Witt <onecreativenerd@gmail.com>",
"Shane O'Hanlon <shane.c.ohanlon@gmail.com>"
],
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/suredone/qdone.git"
},
"keywords": [
"sqs",
"job",
"queue",
"cli",
"command line",
"aws",
"producer",
"consumer",
"amazon"
],
"jest": {
"testEnvironment": "jest-environment-node",
"transform": {}
},
"standard": {
"env": [
"jest",
"es6"
]
},
"bugs": {
"url": "https://github.com/suredone/qdone/issues"
},
"homepage": "https://github.com/suredone/qdone#readme"
}