-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.36 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": "capataz",
"description": "A framework to set up distributed algorithm via HTTP and Javascript.",
"keywords": [
"distributed computing",
"distributed algorithm"
],
"version": "0.1.7-beta",
"author": {
"name": "Leonardo Val",
"email": "[email protected]"
},
"homepage": "http://creatartis.com",
"contributors": [
{
"name": "Gonzalo Martínez",
"email": "[email protected]"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/LeonardoVal/capataz.js"
},
"main": "build/capataz_node.min.js",
"files": [
"build",
"LICENSE.md",
"docs/tutorial.md"
],
"dependencies": {
"express": "~4.17.1",
"body-parser": "~1.19.0",
"compression": "~1.7.4",
"creatartis-base": "~0.1.8",
"sermat": "~0.0.9"
},
"devDependencies": {
"source-map-support": "~0.5.12",
"requirejs": "~2.3.6",
"grunt": "~1.0.4",
"grunt-contrib-clean": "~2.0.0",
"grunt-contrib-copy": "~1.0.0",
"grunt-contrib-concat": "~1.0.1",
"grunt-contrib-uglify": "~4.0.1",
"grunt-contrib-jshint": "~2.1.0",
"grunt-mocha-test": "~0.13.3",
"mocha": "~6.2.0",
"chai": "~4.2.0",
"lodash": "~4.17.15"
},
"scripts": {
"partition_problem1": "grunt & node tests/partition_problem1.js",
"partition_problem2": "grunt & node tests/partition_problem2.js",
"pi_estimation": "grunt & node tests/pi_estimation.js"
}
}