-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.77 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "l8",
"version": "0.3.6",
"description": "l8 is an *experimental* pthread/erlang inspired task manager for javascript. Simple tasks becomes 'paroles', complex tasks become functions broken in 'steps'. l8 comes with synchronisation and distribution tools including semaphores, mutexes, message queues, generators, actors and socket.io proxied actors, among others.",
"main": "lib/l8.js",
"files": [
"lib",
"test"
],
"directories": {
"lib": "lib",
"test": "test"
},
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"connect": "^3.2.0",
"matches": "^0.5.1",
"serve-static": "^1.6.3",
"socket.io": "^1.1.0",
"socket.io-client": "^1.1.0"
},
"devDependencies": {
"browserify": "^8.1.1",
"coffee-script": "^1.8.0",
"mocha": "^1.21.4",
"mocha-unfunk-reporter": "^0.4.0",
"promises-aplus-tests": "^2.1.0"
},
"scripts": {
"postinstall": "ln -s ../. node_modules/l8 || true",
"test": "node test/parole.js && mocha test/boxon.js -R spec && promises-aplus-tests test/promise.js && node test/suite.js && node test/actor.js && node test/node.js"
},
"repository": {
"type": "git",
"url": "git://github.com/JeanHuguesRobert/l8.git"
},
"keywords": [
"flow",
"control",
"flow control",
"flow-control",
"async",
"promise",
"future",
"defer",
"deferred",
"parole",
"boxon",
"co",
"thunk",
"step",
"actor",
"remote",
"erlang",
"semaphore",
"mutex",
"thread",
"queue",
"proxy",
"rpc",
"message passing",
"message queue",
"websockets",
"socket.io"
],
"author": {
"name": "Jean Hugues Robert",
"email": "jean_hugues_robert@yahoo.com",
"url": "http://virteal.com"
},
"license": "MIT"
}