dareid/chakram

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "chakram",
  "version": "1.5.0",
  "description": "Chakram is an API testing framework designed to test JSON REST endpoints. The library offers a BDD testing style and fully exploits javascript promises",
  "main": "lib/chakram.js",
  "license": "MIT",
  "contributors": [
    {
      "name": "Daniel Reid",
      "email": "danielallenreid@gmail.com",
      "url": "https://twitter.com/danielallenreid"
    },
    {
      "name": "Harry Rose"
    }
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/dareid/chakram"
  },
  "keywords": [
    "test",
    "API",
    "REST",
    "HTTP",
    "JSON",
    "mocha",
    "chai",
    "BDD"
  ],
  "dependencies": {
    "chai": "3.x.x",
    "chai-as-promised": "5.x.x",
    "chai-subset": "1.x.x",
    "extend-object": "1.x.x",
    "q": "1.x.x",
    "request": "2.x.x",
    "request-debug": "0.x.x",
    "tv4": "1.x.x"
  },
  "devDependencies": {
    "codeclimate-test-reporter": "0.x.x",
    "istanbul": "0.x.x",
    "jaguarjs-jsdoc": "dareid/jaguarjs-jsdoc",
    "jsdoc": "latest",
    "mocha": "3.x.x",
    "rewire": "2.x.x",
    "simplifyify": "2.x.x",
    "sinon": "1.x.x"
  },
  "scripts": {
    "pretest": "npm install",
    "test": "istanbul cover _mocha",
    "predoc": "npm install",
    "doc": "jsdoc -t node_modules/jaguarjs-jsdoc -c conf.json -R README.md -r lib",
    "prebuild:js": "rm -rf dist",
    "build:js": "simplifyify --outfile dist/chakram.js --bundle --minify --debug --standalone chakram lib/* lib/**/*"
  },
  "engines": {
    "node": ">= 0.10.0"
  }
}