-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
54 lines (54 loc) · 1.61 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
{
"name": "noroutine",
"version": "0.0.7",
"author": "Timur Shemsedinov <[email protected]>",
"license": "MIT",
"description": "Goroutine analogue for Node.js, spreads I/O-bound routine (tasks) to utilize thread pool with `worker_threads` using balancer with event loop utilization.",
"keywords": [
"node.js",
"routine",
"threads",
"workers",
"balancer",
"multithreading",
"concurrency",
"parallel"
],
"main": "noroutine.js",
"types": "noroutine.d.ts",
"files": ["lib/", "noroutine.d.ts"],
"engines": {
"node": "^14.17 || 16 || 18 || 19 || 20 || 21"
},
"repository": {
"type": "git",
"url": "git+https://github.com/metarhia/noroutine.git"
},
"bugs": {
"url": "https://github.com/metarhia/noroutine/issues",
"email": "[email protected]"
},
"homepage": "https://metarhia.com",
"funding": {
"type": "patreon",
"url": "https://www.patreon.com/tshemsedinov"
},
"scripts": {
"test": "npm run lint && npm run types && metatests test/",
"types": "tsc -p tsconfig.json",
"lint": "eslint . && prettier --check \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/.*rc\" \"**/*.ts\"",
"fmt": "prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/.*rc\" \"**/*.ts\""
},
"devDependencies": {
"@types/node": "^20.10.8",
"eslint": "^8.56.0",
"eslint-config-metarhia": "^8.2.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"metatests": "^0.8.2",
"metautil": "^3.5.21",
"prettier": "^3.1.1",
"typescript": "^5.3.3"
}
}