{
  "name": "schema-utils",
  "version": "0.2.1",
  "description": "Webpack Schema Validation Utilities",
  "main": "dist/index.js",
  "files": [
    "dist",
    "lib",
    "src",
    ".babelrc"
  ],
  "scripts": {
    "prebuild": "yarn run clean:dist",
    "build": "cross-env NODE_ENV=production babel -s true src -d dist --ignore 'src/**/*.test.js'",
    "clean:dist": "del-cli dist",
    "start": "yarn run serve:dev src",
    "serve:dev": "nodemon $2 --exec babel-node",
    "lint": "eslint --cache src test",
    "security": "nsp check",
    "test": "jest",
    "test:coverage": "jest --collectCoverageFrom='src/**/*.js' --coverage",
    "travis:test": "yarn run test",
    "travis:coverage": "yarn run test:coverage",
    "travis:lint": "yarn run lint && yarn run security",
    "webpack-defaults": "webpack-defaults",
    "lint-staged": "lint-staged",
    "postinstall": "node lib/post_install.js",
    "prepublish": "yarn run build",
    "release": "yarn run standard-version"
  },
  "dependencies": {
    "ajv": "^4.11.2"
  },
  "devDependencies": {
    "babel-cli": "^6.22.2",
    "babel-jest": "^18.0.0",
    "babel-polyfill": "^6.22.0",
    "babel-preset-env": "^1.2.1",
    "babel-preset-webpack": "^1.0.0",
    "chai": "^3.5.0",
    "codecov": "^1.0.1",
    "cross-env": "^3.1.4",
    "del-cli": "^0.2.1",
    "eslint": "^3.14.1",
    "eslint-config-webpack": "^1.0.0",
    "eslint-plugin-import": "^2.2.0",
    "greenkeeper-postpublish": "^1.0.1",
    "jest": "^18.1.0",
    "lint-staged": "^3.3.1",
    "nodemon": "^1.11.0",
    "nsp": "^2.6.2",
    "pre-commit": "^1.2.2",
    "shx": "^0.2.2",
    "standard-version": "^4.0.0",
    "webpack-defaults": "^0.2.1"
  },
  "engines": {
    "node": ">=4.3 <5.0.0 || >=5.10"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/webpack-contrib/schema-utils.git"
  },
  "eslintConfig": {
    "extends": "webpack",
    "installedESLint": true
  },
  "keywords": [
    "webpack",
    "plugin",
    "es2015"
  ],
  "author": "Webpack Contrib (https://github.com/webpack-contrib)",
  "contributors": [
    {
      "name": "Juho Vepsäläinen <@bebraw>"
    },
    {
      "name": "Joshua Wiens <@d3viant0ne>"
    }
  ],
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/webpack-contrib/schema-utils/issues"
  },
  "homepage": "https://github.com/webpack-contrib/schema-utils#readme",
  "pre-commit": "lint-staged",
  "lint-staged": {
    "*.js": [
      "eslint --fix",
      "git add"
    ]
  }
}
