wilmoore/promise-back.js

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "promise-back",
  "description": "Augment a thunk such that it returns a promise if applied without a callback.",
  "version": "0.4.1",
  "author": "Wil Moore III <wil.moore@wilmoore.com>",
  "bugs": {
    "url": "https://github.com/wilmoore/promise-back.js/issues"
  },
  "dependencies": {
    "bluebird": "latest"
  },
  "devDependencies": {
    "istanbul": "^0.3.13",
    "nodemon": "^1.3.7",
    "selectn": "^0.9.6",
    "standard": "^3.7.1",
    "tap-spec": "^2.2.2",
    "tape": "^4.0.0",
    "tape-catch": "^1.0.4"
  },
  "homepage": "https://github.com/wilmoore/promise-back.js",
  "keywords": [],
  "license": "MIT",
  "main": "index.js",
  "preferGlobal": false,
  "private": false,
  "repository": {
    "type": "git",
    "url": "https://github.com/wilmoore/promise-back.js"
  },
  "scripts": {
    "cover": "istanbul cover test.js",
    "dev": "nodemon -x 'npm run test --silent' -e 'js json'",
    "release-major": "npm version major && git push --follow-tags && npm publish",
    "release-minor": "npm version minor && git push --follow-tags && npm publish",
    "release-patch": "npm version patch && git push --follow-tags && npm publish",
    "standard": "standard",
    "test": "npm run standard --silent && node test.js | tap-spec"
  }
}