{
  "name": "@yued/sql-ddl-to-json-schema",
  "version": "3.3.2",
  "description": "Parse and convert SQL DDL statements to a JSON Schema.",
  "keywords": [
    "parse",
    "parser",
    "sql",
    "ddl",
    "format",
    "formatter",
    "json",
    "schema",
    "jsonschema",
    "convert",
    "converter"
  ],
  "main": "index.js",
  "author": "Alexandre Duarte <duartealexf@gmail.com> (https://github.com/duartealexf)",
  "maintainers": [
    "Alexandre Duarte <duartealexf@gmail.com> (https://github.com/duartealexf)"
  ],
  "scripts": {
    "standard-version": "standard-version",
    "nodemon": "nodemon",
    "eslint": "eslint",
    "nearley-test": "node_modules/nearley/bin/nearley-test.js",
    "nearleyc": "node_modules/nearley/bin/nearleyc.js",
    "ava": "node_modules/ava/cli.js",
    "nyc": "node_modules/nyc/bin/nyc.js",
    "nodemon-watch": "nodemon -w lib -w src -w test -e ne,js --ignore lib",
    "coverage": "npm run nyc ava test/**/*.spec.js",
    "test": "ava --color test/**/*.spec.js",
    "lint": "eslint src tasks test lib",
    "prebuild:mysql": "node tasks/mysql/assembly.js && node tasks/mysql/formatters.js",
    "build:mysql": "nearleyc lib/mysql/parser/grammar.ne > lib/mysql/parser/grammar.js",
    "build": "npm run build:mysql",
    "test:watch": "npm run nodemon-watch -- --exec 'npm run test'",
    "test:update": "DRY_UPDATE=1 npm run test",
    "build:watch": "npm run nodemon-watch -- --exec 'npm run build'",
    "prerelease": "npm run lint && npm run build",
    "release": "standard-version && git push --follow-tags && npm publish"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/duartealexf/sql-ddl-to-json-schema"
  },
  "homepage": "https://github.com/duartealexf/sql-ddl-to-json-schema",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/duartealexf/sql-ddl-to-json-schema/issues"
  },
  "dependencies": {
    "moo": "^0.4.3",
    "nearley": "^2.13.0"
  },
  "devDependencies": {
    "ava": "^1.4.1",
    "commitizen": "^3.0.7",
    "cz-conventional-changelog": "^2.1.0",
    "eslint": "^4.7.0",
    "fs-extra": "^5.0.0",
    "nodemon": "^1.18.9",
    "nyc": "^13.3.0",
    "standard-version": "^4.3.0",
    "winston": "^3.0.0-rc0"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "directories": {
    "lib": "./lib",
    "test": "./test"
  },
  "engines": {
    "node": ">=6.0.0"
  }
}
