{
  "name": "cypher-codemirror",
  "description": "Cypher query language integration with CodeMirror editor",
  "keywords": [
    "cypher",
    "codemirror"
  ],
  "version": "1.1.9",
  "author": "Neo Technology Inc.",
  "license": "GPL-3.0",
  "main": "./dist/cypher-codemirror.js",
  "repository": {
    "type": "git",
    "url": "git://github.com/neo4j-contrib/cypher-editor.git"
  },
  "bugs": {
    "url": "https://github.com/neo4j-contrib/cypher-editor/issues"
  },
  "scripts": {
    "start": "webpack-dev-server --hot --inline --config webpack.demo-react.config.js --content-base dev/",
    "build": "rm -rf dist/ && webpack && yarn build-css",
    "build-css": "yarn build-css-all && yarn build-css-completion && yarn build-css-editor && yarn build-css-syntax",
    "build-css-all": "postcss -c postcss.config.js -o dist/cypher-codemirror-all.css src/codemirror-cypher.css",
    "build-css-completion": "postcss -c postcss.config.js -o dist/cypher-codemirror-completion.css src/css/completion.css",
    "build-css-editor": "postcss -c postcss.config.js -o dist/cypher-codemirror-editor.css src/css/editor.css",
    "build-css-syntax": "postcss -c postcss.config.js -o dist/cypher-codemirror-syntax.css src/css/syntax.css",
    "build-demo": "rm -rf demo/ && yarn build-demo-react && cp dev/index.html demo/index.html",
    "build-demo-react": "webpack --config webpack.demo-react.config.js",
    "build-demo-vanilla": "yarn build && webpack --config webpack.demo-vanilla.config.js && cp dist/* demo/vanilla/",
    "eslint": "eslint src/**/**.js dev/**/**.js",
    "eslint-fix": "eslint --fix src/**/**.js dev/**/**.js",
    "verify": "yarn eslint && yarn build",
    "version": "yarn add cypher-editor-support@$npm_package_version",
    "prepublishOnly": "yarn verify"
  },
  "files": [
    "src/",
    "dist/",
    "README.md",
    "yarn.lock",
    "webpack.config.js",
    "postcss.config.js"
  ],
  "engineStrict": true,
  "engines": {
    "node": ">=8.2.0"
  },
  "dependencies": {
    "cypher-editor-support": "1.1.9"
  },
  "peerDependencies": {
    "codemirror": "^5.25.0",
    "prop-types": "^15.5.10",
    "react": "^15.6.1",
    "react-dom": "^15.6.1"
  },
  "devDependencies": {
    "babel-core": "^6.25.0",
    "babel-eslint": "^7.2.3",
    "babel-loader": "^7.1.1",
    "babel-plugin-transform-class-properties": "6.24.1",
    "babel-plugin-transform-object-rest-spread": "6.23.0",
    "babel-polyfill": "6.23.0",
    "babel-preset-es2015": "6.24.1",
    "babel-preset-react": "6.24.1",
    "codemirror": "^5.28.0",
    "css-loader": "^0.28.4",
    "eslint": "^3.19.0",
    "eslint-config-airbnb": "15.0.2",
    "eslint-plugin-import": "2.7.0",
    "eslint-plugin-jsx-a11y": "^5.1.1",
    "eslint-plugin-react": "^7.1.0",
    "extract-text-webpack-plugin": "^3.0.0",
    "html-webpack-plugin": "^2.29.0",
    "mocha": "^3.4.2",
    "postcss-cli": "^4.1.0",
    "postcss-cssnext": "^3.0.2",
    "postcss-import": "^10.0.0",
    "postcss-loader": "^2.0.6",
    "prop-types": "^15.5.10",
    "react": "^15.6.1",
    "react-dom": "^15.6.1",
    "style-loader": "^0.18.2",
    "webpack": "^3.3.0",
    "webpack-dev-server": "^2.5.1"
  }
}
