{
  "name": "@revmob/raml-validator",
  "version": "0.2.1",
  "description": "Project used for documenting and validating APIs",
  "main": "dist/index.js",
  "module": "src/index.js",
  "scripts": {
    "build": "babel ./src -d ./dist",
    "build:watch": "babel ./src -d ./dist --watch",
    "clean": "if [ -d ./dist ]; then find ./dist -maxdepth 1 -exec rm -rf {} +; fi",
    "lint": "eslint ./src",
    "prepublishOnly": "npm run lint && npm run build && npm run test",
    "test:watch": "npm t -- --watch",
    "test": "$(npm bin)/ava"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/revmobads/raml-validator.git"
  },
  "author": "",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/revmobads/raml-validator/issues"
  },
  "homepage": "https://github.com/revmobads/raml-validator#readme",
  "dependencies": {
    "osprey": "~0.4.1"
  },
  "devDependencies": {
    "ava": "^0.19.1",
    "babel-cli": "^6.24.1",
    "babel-eslint": "^7.2.3",
    "babel-plugin-istanbul": "^4.1.4",
    "babel-plugin-syntax-class-properties": "^6.13.0",
    "babel-plugin-transform-class-properties": "^6.24.1",
    "babel-plugin-transform-runtime": "^6.23.0",
    "babel-preset-env": "^1.5.1",
    "eslint": "^3.19.0",
    "eslint-config-standard": "^10.2.1",
    "eslint-plugin-import": "^2.3.0",
    "eslint-plugin-node": "^4.2.2",
    "eslint-plugin-promise": "^3.5.0",
    "eslint-plugin-standard": "^3.0.1",
    "express": "^4.15.3",
    "supertest": "^3.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "ava": {
    "require": "babel-register",
    "babel": {
      "babelrc": true
    },
    "files": [
      "**/*.test.js",
      "!dist/**/*"
    ]
  }
}
