sqs-producer
Version:
Enqueues messages onto a given SQS queue
97 lines (96 loc) • 2.8 kB
JSON
{
"name": "sqs-producer",
"version": "9.0.2",
"description": "Enqueues messages onto a given SQS queue",
"keywords": [
"aws-sqs",
"backend",
"message-queue",
"nodejs",
"queue-producer",
"serverless",
"sqs"
],
"homepage": "https://bbc.github.io/sqs-producer/",
"bugs": {
"url": "https://github.com/bbc/sqs-producer/issues"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/bbc/sqs-producer.git"
},
"type": "module",
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"publishConfig": {
"provenance": true
},
"scripts": {
"clean": "rm -fr dist/*",
"compile": "tsc -b ./tsconfig.cjs.json ./tsconfig.esm.json",
"add-package-jsons": "node ./scripts/addPackageJsons.js",
"build": "npm run clean && npm run compile && npm run add-package-jsons",
"prepublishOnly": "npm run build",
"release": "semantic-release",
"test:unit": "vitest run",
"test:unit:report": "vitest run --reporter=junit --outputFile=test/reports/test-results.xml",
"watch": "tsc --watch",
"pretest": "npm run build",
"test": "npm run test:unit:report",
"coverage": "vitest run --coverage --coverage.reporter=html --coverage.reporter=json-summary",
"lcov": "vitest run --coverage --coverage.reporter=lcov",
"typecheck": "tsc --noEmit",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"format": "oxfmt",
"format:check": "oxfmt --check",
"check": "npm run lint && npm run format:check && npm run typecheck && npm run test",
"generate-docs": "typedoc"
},
"dependencies": {
"@aws-sdk/client-sqs": "^3.989.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/chai": "^5.2.3",
"@types/node": "^25.5.0",
"@types/sinon": "^21.0.1",
"@vitest/coverage-v8": "^3.2.4",
"chai": "^6.2.2",
"conventional-changelog-conventionalcommits": "^9.3.0",
"oxfmt": "^0.41.0",
"oxlint": "^1.56.0",
"semantic-release": "^25.0.3",
"sinon": "^21.0.3",
"typedoc": "^0.28.18",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"peerDependencies": {
"@aws-sdk/client-sqs": "^3.989.0"
},
"overrides": {
"cross-spawn": "^7.0.3"
},
"engines": {
"node": ">=22.0.0"
}
}