twostep
Version:
Simple control-flow library for node.js that makes parallel execution, serial execution and error handling painless.
26 lines (25 loc) • 691 B
JSON
{
"name": "twostep",
"description": "Simple control-flow library for node.js that makes parallel execution, serial execution and error handling painless.",
"version": "0.4.2",
"author": "2do2go team <dev.2do2go@gmail.com>",
"license": "MIT",
"repository": {
"type" : "git",
"url" : "https://github.com/2do2go/node-twostep"
},
"keywords": [
"control", "flow", "step", "async", "sync"
],
"devDependencies" : {
"mocha": "1.8.1",
"expect.js": "0.2.0",
"istanbul": "0.2.7"
},
"scripts": {
"test": "mocha test --reporter spec",
"cover": "istanbul cover _mocha -R test && istanbul report html",
"testAndCover": "npm test && npm run cover"
},
"main": "lib/twoStep"
}