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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
| {
| "title": "TaskGroup",
| "name": "taskgroup",
| "version": "4.3.1",
| "description": "Group together synchronous and asynchronous tasks and execute them with support for concurrency, naming, and nesting.",
| "homepage": "https://github.com/bevry/taskgroup",
| "license": "MIT",
| "badges": {
| "list": [
| "travisci",
| "npmversion",
| "npmdownloads",
| "daviddm",
| "daviddmdev",
| "---",
| "slackin",
| "patreon",
| "gratipay",
| "flattr",
| "paypal",
| "bitcoin",
| "wishlist"
| ],
| "config": {
| "patreonUsername": "bevry",
| "gratipayUsername": "bevry",
| "flattrCode": "344188/balupton-on-Flattr",
| "paypalButtonID": "QB8GQPZAH84N6",
| "bitcoinURL": "https://bevry.me/bitcoin",
| "wishlistURL": "https://bevry.me/wishlist",
| "slackinURL": "https://slack.bevry.me"
| }
| },
| "keywords": [
| "flow",
| "control",
| "async",
| "sync",
| "tasks",
| "batch",
| "concurrency"
| ],
| "author": "2013+ Bevry Pty Ltd <us@bevry.me> (http://bevry.me), 2011+ Benjamin Lupton <b@lupton.cc> (http://balupton.com)",
| "maintainers": [
| "Benjamin Lupton <b@lupton.cc> (http://balupton.com)"
| ],
| "contributors": [
| "Benjamin Lupton <b@lupton.cc> (http://balupton.com)",
| "crito <crito@cryptodrunks.net> (https://github.com/crito)",
| "Peter Flannery (https://github.com/pflannery)",
| "Sean Fridman <mail@seanfridman.com> (http://seanfridman.com)"
| ],
| "bugs": {
| "url": "https://github.com/bevry/taskgroup/issues"
| },
| "repository": {
| "type": "git",
| "url": "http://github.com/bevry/taskgroup.git"
| },
| "browsers": true,
| "engines": {
| "node": ">=0.8"
| },
| "dependencies": {
| "ambi": "^2.2.0",
| "csextends": "^1.0.3"
| },
| "devDependencies": {
| "coffee-script": "^1.9.1",
| "joe": "^1.6.0",
| "joe-reporter-console": "^1.2.1",
| "assert-helpers": "^1.0.0",
| "projectz": "^1.0.0",
| "biscotto": "^2.3.1",
| "safeps": "^2.2.12"
| },
| "directories": {
| "lib": "./out/lib"
| },
| "scripts": {
| "test": "node ./out/test/taskgroup-test.js"
| },
| "main": "./out/lib/taskgroup.js",
| "cakeConfiguration": {
| "COFFEE_SRC_PATH": "src",
| "BISCOTTO_SRC_PATH": "src"
| }
| }
|
|