bakerface/prominator

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "prominator",
  "version": "1.3.0",
  "description": "Combinators for your Promises",
  "author": "Chris Baker <mail.chris.baker@gmail.com>",
  "license": "MIT",
  "main": "index.js",
  "homepage": "https://github.com/bakerface/prominator#readme",
  "keywords": [
    "combinator",
    "promise"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/bakerface/prominator.git"
  },
  "bugs": {
    "url": "https://github.com/bakerface/prominator/issues"
  },
  "scripts": {
    "pretest": "xo",
    "test": "istanbul cover _mocha",
    "codeclimate": "codeclimate-test-reporter < coverage/lcov.info"
  },
  "xo": {
    "space": true,
    "globals": [
      "describe",
      "beforeEach",
      "afterEach",
      "it"
    ],
    "rules": {
      "babel/object-curly-spacing": [
        "error",
        "always"
      ],
      "brace-style": [
        "error",
        "stroustrup"
      ]
    }
  },
  "devDependencies": {
    "codeclimate-test-reporter": "^0.3.3",
    "istanbul": "^0.4.4",
    "mocha": "^2.5.3",
    "xo": "^0.16.0"
  }
}