bakerface/baggy

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "baggy",
  "version": "1.0.1",
  "description": "Asynchronous type resolution with dependencies",
  "main": "index.js",
  "author": "Christopher M. Baker",
  "license": "MIT",
  "homepage": "https://github.com/bakerface/baggy",
  "keywords": [
    "async",
    "asynchronous",
    "bag",
    "type",
    "object",
    "resolve",
    "resolution",
    "create",
    "from",
    "get",
    "use",
    "given"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/bakerface/baggy.git"
  },
  "bugs": {
    "url": "https://github.com/bakerface/baggy/issues"
  },
  "directories": {
    "example": "example"
  },
  "scripts": {
    "pretest": "xo",
    "test": "istanbul cover node_modules/.bin/_mocha",
    "posttest": "istanbul check-coverage --statements 100 --functions 100 --branches 100 --lines 100",
    "codeclimate": "codeclimate-test-reporter < coverage/lcov.info"
  },
  "xo": {
    "space": 2,
    "globals": [
      "describe",
      "it",
      "beforeEach",
      "afterEach"
    ]
  },
  "devDependencies": {
    "codeclimate-test-reporter": "^0.3.1",
    "istanbul": "^0.4.3",
    "mocha": "^2.4.5",
    "xo": "^0.14.0"
  }
}