-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
48 lines (48 loc) · 972 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
45
46
47
48
{
"name": "chan",
"version": "0.6.1",
"description": "A go style channel implementation that works nicely with co",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "http://github.com/brentburgoyne/chan"
},
"keywords": [
"async",
"go",
"channel",
"co",
"generator"
],
"author": "Brent Burgoyne",
"contributors": [
{
"name": "Brent Burgoyne"
},
{
"name": "TJ Holowaychuk",
"email": "[email protected]"
},
{
"name": "Eugene Ware",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/brentburgoyne/chan/issues"
},
"homepage": "https://github.com/brentburgoyne/chan",
"devDependencies": {
"co": "^3.0.6",
"expect.js": "^0.3.1",
"mocha": "^1.20.1",
"should": "^4.0.4",
"sinon": "^1.10.3",
"split": "^0.3.0",
"superagent": "^0.18.0"
}
}