{
  "name": "json-schema-test-data-generator",
  "description": "Generate sample test data based on JSON schema",
  "version": "0.1.1",
  "homepage": "https://github.com/bojand/json-schema-test-data-generator",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git://github.com/bojand/json-schema-test-data-generator.git"
  },
  "bugs": {
    "url": "http://github.com/bojand/json-schema-test-data-generator/issues"
  },
  "engines": {
    "node": ">=0.10.0"
  },
  "main": "dist/index.js",
  "bin": "bin/jstdgen",
  "author": {
    "name": "Bojan Djurkovic <dbojan@gmail.com>"
  },
  "scripts": {
    "test": "npm run dist && ava -v",
    "cover": "npm run dist && nyc ava",
    "docs": "jsdoc2md \"lib/**/*.js\" --template readme.hbs > README.md",
    "dist": "node ./node_modules/babel-cli/bin/babel.js lib --out-dir dist",
    "prepublish": "npm run dist"
  },
  "dependencies": {
    "chance": "~1.0.0",
    "json-schema-faker": "^0.2.15",
    "lodash": "^4.7.0",
    "prop-search": "~1.0.0"
  },
  "devDependencies": {
    "ava": "~0.13.0",
    "babel-cli": "~6.5.0",
    "babel-preset-es2015": "6.5.0",
    "jsdoc-to-markdown": "^1.3.3",
    "nyc": "^5.0.0",
    "validator": "^5.1.0",
    "xo": "^0.13.0"
  },
  "ava": {
    "files": [
      "test/*.js"
    ],
    "source": [
      "dist/index.js"
    ]
  },
  "xo": {
    "envs": [
      "node",
      "es6",
      "mocha"
    ],
    "esnext": true,
    "space": true,
    "rules": {
      "babel/arrow-parens": 0,
      "babel/object-curly-spacing": 0,
      "babel/object-shorthand": 1,
      "brace-style": [
        0,
        "1tbs",
        {
          "allowSingleLine": false
        }
      ],
      "no-else-return": 1,
      "no-unused-vars": 1
    }
  },
  "directories": {
    "test": "test"
  },
  "keywords": [
    "json",
    "jsonschema",
    "json-schema",
    "test",
    "data",
    "generator"
  ],
  "config": {
    "nyc": {
      "include": [
        "dist/*.js"
      ]
    }
  }
}
