it-duplex-ack
Version:
Create source/sink iterables for a duplex stream where each message should be acknowledged
62 lines (61 loc) • 1.9 kB
JSON
{
"name": "it-duplex-ack",
"version": "1.0.8",
"author": {
"email": "no-reply@relaycorp.tech",
"name": "Relaycorp, Inc.",
"url": "https://relaycorp.tech/"
},
"description": "Create source/sink iterables for a duplex stream where each message should be acknowledged",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
"module": "build/module/index.js",
"repository": "https://github.com/relaycorp/it-duplex-ack-js",
"homepage": "https://docs.relaycorp.tech/it-duplex-ack-js/",
"license": "MIT",
"keywords": [
"duplex",
"iterables",
"ack",
"acknowledgement",
"acknowledgment"
],
"scripts": {
"build": "run-s clean && run-p build:*",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:tslint": "tslint --fix --project .",
"static-checks": "run-p static-checks:*",
"static-checks:lint": "tslint --project .",
"static-checks:prettier": "prettier \"src/**/*.ts\" --list-different",
"test": "jest --coverage",
"test:ci:unit": "run-s build test:ci:unit:jest",
"test:ci:unit:jest": "jest --config jest.config.ci.js --coverage",
"test:integration": "exit 0",
"doc-api": "typedoc src/index.ts --out build/docs",
"clean": "del-cli build test"
},
"engines": {
"node": ">=12"
},
"devDependencies": {
"@relaycorp/shared-config": "^1.9.1",
"@types/jest": "^27.5.0",
"del-cli": "^5.0.0",
"jest": "^24.9.0",
"jest-extended": "^3.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.1",
"ts-jest": "^24.3.0",
"ts-node": "^10.9.1",
"tslint": "^5.20.1",
"typedoc": "^0.21.5",
"typescript": "^4.2.4"
},
"prettier": "@relaycorp/shared-config/.prettierrc.json",
"publishConfig": {
"access": "public"
}
}