-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
30 lines (30 loc) · 883 Bytes
/
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
{
"name": "node-parallelizer",
"version": "3.1.0",
"description": "A NodeJS package for running code in parallel. Initially created to provide multiprocessing in an AWS Lambda function, but it can be used in any NodeJS environment.",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Edujugon/node-parallelizer.git"
},
"keywords": [
"parallelizer",
"Lambda parallelizer",
"child process",
"parallelism",
"worker thread",
"nodejs parallel"
],
"author": "Eduardo Marcos <edujugon@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Edujugon/node-parallelizer/issues"
},
"homepage": "https://github.com/Edujugon/node-parallelizer#readme",
"devDependencies": {
"benchmark": "^2.1.4"
}
}