-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
57 lines (57 loc) · 1.71 KB
/
package.json
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
{
"name": "thread-stream",
"version": "3.1.0",
"description": "A streaming way to send data to a Node.js Worker Thread",
"main": "index.js",
"types": "index.d.ts",
"dependencies": {
"real-require": "^0.2.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/tap": "^15.0.0",
"@yao-pkg/pkg": "^6.0.0",
"desm": "^1.3.0",
"fastbench": "^1.0.1",
"husky": "^9.0.6",
"pino-elasticsearch": "^8.0.0",
"sonic-boom": "^4.0.1",
"standard": "^17.0.0",
"tap": "^16.2.0",
"ts-node": "^10.8.0",
"typescript": "~5.3.2",
"why-is-node-running": "^2.2.2"
},
"scripts": {
"build": "tsc --noEmit",
"test": "standard && npm run build && npm run transpile && tap \"test/**/*.test.*js\" && tap --ts test/*.test.*ts",
"test:ci": "standard && npm run transpile && npm run test:ci:js && npm run test:ci:ts",
"test:ci:js": "tap --no-check-coverage --timeout=120 --coverage-report=lcovonly \"test/**/*.test.*js\"",
"test:ci:ts": "tap --ts --no-check-coverage --coverage-report=lcovonly \"test/**/*.test.*ts\"",
"test:yarn": "npm run transpile && tap \"test/**/*.test.js\" --no-check-coverage",
"transpile": "sh ./test/ts/transpile.sh",
"prepare": "husky install"
},
"standard": {
"ignore": [
"test/ts/**/*",
"test/syntax-error.mjs"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/mcollina/thread-stream.git"
},
"keywords": [
"worker",
"thread",
"threads",
"stream"
],
"author": "Matteo Collina <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mcollina/thread-stream/issues"
},
"homepage": "https://github.com/mcollina/thread-stream#readme"
}