-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.1 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.1 KB
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
{
"name": "fnflow",
"description": "Pronounced \"effin' flow\" because it's so badass, fnFlow is a Javascript control flow library heavily influenced by Caolan McMahon's async that encourages a proper functional design pattern.",
"main": "./lib/fnFlow",
"author": "David Fenster <david@dfenster.com>",
"version": "0.5.3",
"repository": {
"type": "git",
"url": "https://github.com/shutterstock/fnFlow.git"
},
"license": "MIT",
"dependencies": {
"common-errors": "0.1.1",
"async": "0.2.6",
"underscore": "1.4.4"
},
"devDependencies": {
"nodeunit": ">0.0.0"
},
"keywords": [
"control flow",
"control",
"flow",
"control-flow",
"async",
"auto"
],
"jam": {
"main": "lib/fnFlow.js",
"include": [
"lib/fnFlow.js",
"README.md",
"LICENSE"
]
},
"scripts": {
"test": "nodeunit tests"
},
"homepage": "https://github.com/shutterstock/fnFlow",
"bugs": "https://github.com/shutterstock/fnFlow/issues",
"contributors": [
"David Fenster <david@dfenster.com>",
"Ben Kovacevich <bkovacevich@shutterstock.com"
]
}