CoolFace
Apppublic

strong-tie/inbound-calls

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
package.json58 linesDownload Raw Back to thread-stream
1{2  "name": "thread-stream",3  "version": "3.1.0",4  "description": "A streaming way to send data to a Node.js Worker Thread",5  "main": "index.js",6  "types": "index.d.ts",7  "dependencies": {8    "real-require": "^0.2.0"9  },10  "devDependencies": {11    "@types/node": "^20.1.0",12    "@types/tap": "^15.0.0",13    "@yao-pkg/pkg": "^5.11.5",14    "desm": "^1.3.0",15    "fastbench": "^1.0.1",16    "husky": "^9.0.6",17    "pino-elasticsearch": "^8.0.0",18    "sonic-boom": "^4.0.1",19    "standard": "^17.0.0",20    "tap": "^16.2.0",21    "ts-node": "^10.8.0",22    "typescript": "^5.3.2",23    "why-is-node-running": "^2.2.2"24  },25  "scripts": {26    "build": "tsc --noEmit",27    "test": "standard && npm run build && npm run transpile && tap \"test/**/*.test.*js\" && tap --ts test/*.test.*ts",28    "test:ci": "standard && npm run transpile && npm run test:ci:js && npm run test:ci:ts",29    "test:ci:js": "tap --no-check-coverage --timeout=120 --coverage-report=lcovonly \"test/**/*.test.*js\"",30    "test:ci:ts": "tap --ts --no-check-coverage --coverage-report=lcovonly \"test/**/*.test.*ts\"",31    "test:yarn": "npm run transpile && tap \"test/**/*.test.js\" --no-check-coverage",32    "transpile": "sh ./test/ts/transpile.sh",33    "prepare": "husky install"34  },35  "standard": {36    "ignore": [37      "test/ts/**/*",38      "test/syntax-error.mjs"39    ]40  },41  "repository": {42    "type": "git",43    "url": "git+https://github.com/mcollina/thread-stream.git"44  },45  "keywords": [46    "worker",47    "thread",48    "threads",49    "stream"50  ],51  "author": "Matteo Collina <hello@matteocollina.com>",52  "license": "MIT",53  "bugs": {54    "url": "https://github.com/mcollina/thread-stream/issues"55  },56  "homepage": "https://github.com/mcollina/thread-stream#readme"57}58