PruvoNet/squiss-ts

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "squiss-ts",
  "version": "5.4.0",
  "description": "High-volume SQS poller",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "engines": {
    "node": "^18 || ^20 || ^21"
  },
  "scripts": {
    "clean": "rm -rf .nyc_output coverage dist",
    "build": "yarn lint && yarn compile",
    "compile": "tsc",
    "test": "yarn lint && yarn mocha",
    "cover": "yarn clean && yarn nyc yarn mocha",
    "lint": "eslint -c .eslintrc.js --ext .ts \"src/**/*.ts\"",
    "benchmark": "tsc --extendedDiagnostics --incremental false",
    "e2e:start": "docker compose -f e2e/docker-compose.yml up &",
    "e2e:stop": "docker compose -f e2e/docker-compose.yml down &"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/PruvoNet/squiss-ts.git"
  },
  "files": [
    "/dist/*.d.ts",
    "/dist/*.js"
  ],
  "keywords": [
    "aws",
    "amazon",
    "sqs",
    "polling",
    "poll",
    "poller",
    "queue",
    "typescript",
    "sns",
    "s3",
    "extended",
    "client",
    "sdk"
  ],
  "author": "Regev Brody <regevbr@gmail.com>",
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/PruvoNet/squiss-ts/issues"
  },
  "homepage": "https://github.com/PruvoNet/squiss-ts#readme",
  "dependencies": {
    "@aws-sdk/client-s3": "^3.549.0",
    "@aws-sdk/client-sqs": "^3.547.0",
    "@aws-sdk/types": "^3.535.0",
    "linked-list": "2.1.0",
    "ts-type-guards": "^0.7.0",
    "uuid": "^9.0.1"
  },
  "devDependencies": {
    "@istanbuljs/nyc-config-typescript": "1.0.2",
    "@types/chai": "^4.3.14",
    "@types/chai-as-promised": "^7.1.8",
    "@types/mocha": "^10.0.6",
    "@types/node": "^16.18.64",
    "@types/proxyquire": "^1.3.31",
    "@types/uuid": "^9.0.8",
    "@typescript-eslint/eslint-plugin": "^7.3.1",
    "@typescript-eslint/parser": "^7.3.1",
    "chai": "4.3.10",
    "chai-as-promised": "^7.1.1",
    "delay": "5.0.0",
    "dirty-chai": "^2.0.1",
    "eslint": "^8.57.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-import": "^2.29.1",
    "eslint-plugin-jsdoc": "^48.2.1",
    "eslint-plugin-prefer-arrow": "^1.2.3",
    "mocha": "^10.3.0",
    "nyc": "^15.1.0",
    "proxyquire": "^2.1.3",
    "sinon": "^17.0.1",
    "sinon-chai": "^3.7.0",
    "source-map-support": "^0.5.21",
    "ts-node": "^10.9.2",
    "typescript": "^5.4.3"
  },
  "nyc": {
    "extends": "@istanbuljs/nyc-config-typescript",
    "check-coverage": true,
    "all": true,
    "exclude": [
      "src/test/**",
      "e2e**",
      "build**",
      ".eslintrc.js"
    ],
    "reporter": [
      "html",
      "lcov",
      "text",
      "text-summary"
    ],
    "report-dir": "coverage"
  }
}