kkemple/u-promised

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "u-promised",
  "version": "0.2.5",
  "description": "Promise based retry and backoff, bring your own Promises",
  "main": "lib/index.js",
  "scripts": {
    "test:ci": "npm run lint && npm run test:coverage",
    "test:coverage": "istanbul cover tape -- -r babel-register src/**/*.test.js",
    "test": "tape -r babel-register src/**/*.test.js",
    "lint": "eslint .",
    "deploy": "npm publish",
    "compile": "rimraf lib && babel src --out-dir lib --source-maps inline"
  },
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/kkemple/u-promised.git"
  },
  "keywords": [
    "retry",
    "backoff",
    "promise",
    "promises",
    "functional"
  ],
  "author": "kurtiskemple@gmail.com",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/kkemple/u-promised/issues"
  },
  "homepage": "https://github.com/kkemple/u-promised#readme",
  "devDependencies": {
    "@mls-digital/highwire": "^1.0.3",
    "babel-cli": "^6.10.1",
    "babel-preset-es2015": "^6.9.0",
    "babel-register": "^6.9.0",
    "eslint": "^2.13.1",
    "eslint-config-airbnb": "^9.0.1",
    "eslint-plugin-import": "^1.10.0",
    "eslint-plugin-jsx-a11y": "^1.5.3",
    "eslint-plugin-react": "^5.2.2",
    "istanbul": "^1.0.0-alpha.2",
    "rimraf": "^2.5.2",
    "sinon": "^2.0.0",
    "tape": "^4.6.0"
  },
  "dependencies": {
    "babel-eslint": "^7.0.0",
    "eslint-plugin-flowtype": "^2.3.0",
    "flow-bin": "^0.47.0",
    "lodash.isfunction": "^3.0.8"
  }
}