-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (44 loc) · 1005 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "syncho",
"version": "0.2.5",
"description": "Fast and lean abstraction for node Fibers. Easily run asynchronous functions synchronously.",
"author": "Jerome Touffe-Blin <[email protected]> (http://about.me/jtblin)",
"homepage": "https://github.com/jtblin/syncho",
"dependencies": {
"fibers": "~1.0.5"
},
"repository": {
"type": "git",
"url": "git://github.com/jtblin/syncho.git"
},
"main": "index.js",
"engines": {
"node": ">=0.5.2"
},
"keywords": [
"fibers",
"syncho",
"sync",
"synchronize",
"synchronous",
"async",
"harmony",
"flow",
"control flow",
"thread",
"parallel"
],
"license": "BSD",
"devDependencies": {
"chai": "~1.10.0",
"istanbul": "^0.3.2",
"mocha": "~2.1.0",
"sinon": "^1.12.0",
"sinon-chai": "^2.6.0"
},
"scripts": {
"test": "NODE_ENV=test mocha -w test/",
"cov": "istanbul cover _mocha",
"viewcov": "open test/coverage/lcov-report/index.html"
}
}