-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
46 lines (45 loc) · 1.05 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
{
"name": "klyng",
"version": "1.0.5",
"description": "A message-passing distributed computing framework for node.js",
"bin": "bin/main.js",
"scripts": {
"test": "gulp test",
"unit-tests": "gulp unit-tests",
"integration-tests": "gulp integration-tests",
"benchmarks": "node tests/benchmarks/run.js"
},
"author": {
"name": "Mostafa Samir",
"email": "[email protected]"
},
"license": "MIT",
"keywords": [
"distributed",
"message-passing",
"parallel"
],
"repository": {
"type": "git",
"url": "https://github.com/Mostafa-Samir/klyng.git"
},
"dependencies": {
"browserify": "^13.0.0",
"command-line-args": "^2.1.4",
"fibers": "^1.0.9",
"node-ipc": "https://github.com/RIAEvangelist/node-ipc/tarball/master",
"zip-local": "^0.3.2"
},
"devDependencies": {
"chai": "^3.5.0",
"colors": "^1.1.2",
"gulp": "^3.9.1",
"gulp-mocha": "^2.2.0",
"gulp-sequence": "^0.4.5",
"mocha": "^2.4.5",
"rimraf": "^2.5.2"
},
"engines": {
"node": ">=4.2.3"
}
}