{
  "name": "karma-chai",
  "description": "Chai for Karma",
  "keywords": [
    "karma",
    "karma-plugin",
    "chai",
    "mocha",
    "should"
  ],
  "version": "0.1.0",
  "author": {
    "name": "Greg Thornton",
    "email": "xdissent@me.com",
    "url": "http://xdissent.com"
  },
  "contributors": [
    {
      "name": "Alex Gorbatchev",
      "url": "https://github.com/alexgorbatchev"
    },
    {
      "name": "Thomas Parisot",
      "url": "https://github.com/oncletom"
    }
  ],
  "main": "./index.js",
  "license": "MIT",
  "homepage": "http://xdissent.github.io/karma-chai",
  "repository": {
    "type": "git",
    "url": "https://github.com/xdissent/karma-chai.git"
  },
  "bugs": {
    "url": "https://github.com/xdissent/karma-chai/issues"
  },
  "peerDependencies": {
    "chai": "*",
    "karma": ">=0.10.9"
  },
  "readme": "karma-chai\n==========\n\n[Chai](http://chaijs.com) for [Karma](http://karma-runner.github.io)\n\n[![NPM version](https://badge.fury.io/js/karma-chai.png)](http://badge.fury.io/js/karma-chai) [![Dependency status](https://david-dm.org/xdissent/karma-chai.png)](https://david-dm.org/xdissent/karma-chai) [![devDependency Status](https://david-dm.org/xdissent/karma-chai/dev-status.png)](https://david-dm.org/xdissent/karma-chai#info=devDependencies)\n\nInstallation\n------------\n\nInstall the plugin from npm:\n\n```sh\n$ npm install karma-chai --save-dev\n```\n\nOr from Github:\n\n```sh\n$ npm install 'git+https://github.com/xdissent/karma-chai.git' --save-dev\n```\n\nAdd `chai` to the `frameworks` key in your Karma configuration:\n\n```coffee\nmodule.exports = (config) ->\n  config.set\n\n    # frameworks to use\n    frameworks: ['mocha', 'chai']\n\n    # ...\n```\n\n\nUsage\n-----\n\nEach of the different Chai assertion suites is available in the tests:\n\n```coffee\ndescribe 'karma tests with chai', ->\n\n  it 'should expose the Chai assert method', ->\n    assert.ok('everything', 'everything is ok');\n\n  it 'should expose the Chai expect method', ->\n    expect('foo').to.not.equal 'bar'\n\n  it 'should expose the Chai should property', ->\n    1.should.not.equal 2\n    should.exist 123\n```\n\nLicense\n-------\n\nThe MIT License (MIT)\n",
  "readmeFilename": "README.md",
  "_id": "karma-chai@0.1.0",
  "dist": {
    "shasum": "5ccbe5f89fcffc0327413021d3ba5649abc7681b"
  },
  "_from": "karma-chai@^0.1.0",
  "_resolved": "https://registry.npmjs.org/karma-chai/-/karma-chai-0.1.0.tgz"
}
