-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 837 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
{
"name": "asyncflow",
"version": "0.2.1",
"description": "asyncflow is an expressive, capable and easy to use async flow library based on node-fibers.",
"main": "./lib/asyncflow.js",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/sethyuan/asyncflow.git"
},
"bugs": {
"url": "https://github.com/sethyuan/asyncflow/issues",
"email": "cavingdeep@gmail.com"
},
"keywords": [
"async",
"flow",
"concurrency",
"limit",
"parallel",
"waterfall",
"series"
],
"author": {
"name": "sethyuan",
"email": "cavingdeep@gmail.com"
},
"engines": {
"node": ">=0.10"
},
"license": "MIT",
"readmeFilename": "README.md",
"devDependencies": {
"chai": "latest"
},
"dependencies": {
"fibers": ">=1.0.1"
}
}