-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
23 lines (23 loc) · 889 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
{
"name": "mandelbrot",
"version": "1.0.0",
"description": "Run a computation of the Mandelbrot set in various languages. The variants are designed to be more or less equivalent, printing the output only at the end to reduce the dependency of I/O to a minimum. Thus, only FP comuputation is measured.",
"main": "index.js",
"dependencies": {
"systeminformation": "^5.6.4"
},
"scripts": {
"start": "node runAll",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jschirrmacher/mandelbrot.git"
},
"author": "[email protected]",
"license": "Apache License v2.0",
"bugs": {
"url": "https://github.com/jschirrmacher/mandelbrot/issues"
},
"homepage": "https://github.com/jschirrmacher/mandelbrot#readme"
}