{
  "name": "jsonrecipe-schema",
  "version": "0.0.2",
  "description": "A JSON schema for culinary recipes.",
  "main": "dist/lib/index.js",
  "scripts": {
    "build": "run-s gen-schema-types compile copy-schema-types",
    "check-style": "prettier -l recipe.schema.json lib/**/*.ts",
    "compile": "tsc -p tsconfig.lib.json",
    "copy-schema-types": "cp lib/schema.d.ts dist/lib/",
    "gen-schema-types": "json2ts -i recipe.schema.json -o lib/schema.d.ts",
    "lint": "tslint -p tsconfig.lib.json",
    "prepare": "run-s build",
    "run-tests": "mocha -r ts-node/register lib/**/*.spec.ts",
    "test": "run-s validate-schema gen-schema-types check-style lint run-tests",
    "validate-schema": "ajv compile -s recipe.schema.json"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ianprime0509/jsonrecipe-schema.git"
  },
  "keywords": [
    "json",
    "recipe",
    "cooking",
    "schema",
    "cuisine"
  ],
  "author": {
    "name": "Ian Johnson",
    "email": "ianprime0509@gmail.com"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/ianprime0509/jsonrecipe-schema/issues"
  },
  "homepage": "https://github.com/ianprime0509/jsonrecipe-schema#readme",
  "devDependencies": {
    "@types/chai": "^4.1.6",
    "@types/mocha": "^5.2.5",
    "ajv-cli": "^3.0.0",
    "chai": "^4.2.0",
    "json-schema-to-typescript": "^6.0.1",
    "mocha": "^5.2.0",
    "npm-run-all": "^4.1.3",
    "prettier": "^1.14.3",
    "ts-node": "^7.0.1",
    "tslint": "^5.11.0",
    "typescript": "^3.1.1"
  },
  "dependencies": {
    "ajv": "^6.5.4"
  }
}
