dwyl/ordenado

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "ordem",
  "version": "1.2.0",
  "description": "simple ordered task runner for node.js and browser",
  "main": "index.js",
  "directories": {
    "test": "test"
  },
  "scripts": {
    "test": "istanbul cover test/test.js",
    "coverage": "istanbul cover ./test/*.js && istanbul check-coverage --statements 100 --functions 100 --lines 100 --branches 100",
    "start": "node example/simple-static-server-for-saucelabs.js"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/dwyl/ordem.git"
  },
  "keywords": [
    "synchronous",
    "ordered",
    "task",
    "runner",
    "async",
    "like async.series or async.waterfall but much simpler",
    "Zero Dependencies"
  ],
  "author": "nelsonic <contact.nelsonic@gmail.com> (https://github.com/nelsonic)",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/dwyl/ordem/issues"
  },
  "homepage": "https://github.com/dwyl/ordem",
  "devDependencies": {
    "istanbul": "^0.4.5",
    "pre-commit": "^1.2.2",
    "tap": "^12.6.1",
    "tap-spec": "^5.0.0"
  },
  "pre-commit": [
    "coverage"
  ],
  "engines": {
    "node": ">= 0.10"
  }
}