{
  "name": "test-classes",
  "version": "0.5.0",
  "description": "Object-oriented classes for testing JavaScript code.",
  "author": "Jeff Hudson <jhudson@jhudson.ca>",
  "license": "ISC",
  "repository": {
    "type": "git",
    "url": "https://github.com/hudson155/js-test-classes.git"
  },
  "scripts": {
    "lint": "eslint . --ext .js",
    "test": "npm run test-examples && npm run test-mocha && npm run lint && npm run test-formatting",
    "test-examples": "NODE_PATH=app mocha --reporter spec 'examples/**/*.test.js'",
    "test-formatting": "mocha --reporter spec formatting-test.js",
    "test-mocha": "NODE_PATH=app nyc --check-coverage --statements 100 --branches 100 --functions 100 --lines 100 mocha --reporter spec 'app/**/*.test.js'"
  },
  "pre-commit": [
    "lint",
    "test-mocha"
  ],
  "dependencies": {
    "js-test-utils": "^0.2.0",
    "lodash": "^4.17.4",
    "sinon": "^2.3.5"
  },
  "devDependencies": {
    "eslint": "^3.19.0",
    "eslint-settings": "^2.1.0",
    "glob": "^7.1.2",
    "mocha": "^3.4.2",
    "nyc": "^11.0.2",
    "pre-commit": "^1.2.2"
  }
}
