forked from panthershark/pipeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 904 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
{
"name": "node-pipeline",
"version": "1.0.2",
"main": "index",
"description": "Simple module to performing asynchronous inter-dependent series operations in node. Unlike other more complicated approaches, this is pure javascript and very small (~100 lines of code with comments).",
"keywords": [
"node",
"pipeline",
"async",
"series",
"execution"
],
"author": {
"name": "Tommy Messbauer",
"email": "[email protected]",
"twitter": "tommymessbauer"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:tommymessbauer/node-pipeline.git"
},
"directories": {
"tests": "tests"
},
"engines": {
"node": ">=0.6.0"
},
"scripts": {
"test": "node tests/api.js"
},
"dependencies": {},
"devDependencies": {
"lodash": "*",
"optimist": "*",
"tap": "*"
},
"optionalDependencies": {}
}