forked from goodeggs/fibrous
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.25 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": "fibrous",
"version": "0.5.0",
"description": "Easily mix asynchronous and synchronous programming styles in node.js",
"homepage": "http://goodeggs.github.com/fibrous/",
"repository": {
"type": "git",
"url": "https://github.com/goodeggs/fibrous.git"
},
"keywords": [
"fiber",
"fibers",
"coroutine",
"future",
"async",
"sync",
"wait"
],
"contributors": [
{
"name": "Randy Puro",
"email": "[email protected]",
"web": "https://github.com/randypuro"
},
{
"name": "Alon Salant",
"email": "[email protected]",
"web": "https://github.com/asalant"
},
{
"name": "Bob Zoller",
"email": "[email protected]",
"web": "https://github.com/bobzoller"
}
],
"licenses": [
"MIT"
],
"dependencies": {
"fibers": ">=0.6.7"
},
"devDependencies": {
"jasmine-node": "^1.14.5",
"coffee-script": "^1.10.0"
},
"main": "lib/fibrous",
"bin": {
"fibrous": "./bin/fibrous"
},
"engine": {
"node": ">=0.10"
},
"scripts": {
"pretest": "coffee -c -o lib src; for i in `ls lib/*.js`; do cat $i | sed \"1s/Generated by/CodeClimate: don't ignore/\" > $i.tmp; mv $i.tmp $i; done",
"test": "jasmine-node --coffee spec"
}
}