-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.03 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
{
"name": "concurrency.js",
"version": "0.0.4",
"description": "npm module to work with concurrency - worker threads and worker processes (currrently only fork method) easily using simple functions and script files",
"main": "index.js",
"directories": {
"test": "test"
},
"exports": {
"require": "./index.js",
"import": "./index.mjs"
},
"devDependencies": {
"chai": "^4.3.6",
"express": "^4.18.2",
"mocha": "^10.2.0",
"npm-check": "^6.0.1",
"sinon": "^14.0.0",
"unimported": "^1.22.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ganeshkbhat/concurrency.git"
},
"bugs": {
"url": "https://github.com/ganeshkbhat/concurrency/issues"
},
"homepage": "https://github.com/ganeshkbhat/concurrency#readme",
"scripts": {
"test": "mocha --reporter spec --recursive --timeout 60000 && exit"
},
"keys": [
"concurrency",
"threads",
"processes"
],
"author": "Ganesh B",
"license": "MIT",
"dependencies": {
"loadbalancerjs": "^0.0.1"
}
}