{
  "name": "react-ace-2",
  "version": "3.5.2",
  "description": "A react component for Ace Editor",
  "main": "lib/ace.js",
  "scripts": {
    "clean": "rimraf lib dist",
    "lint": "node_modules/.bin/eslint src/ace.jsx",
    "build:lib": "babel src --out-dir lib",
    "build:umd": "webpack src/ace.jsx dist/react-ace.js --config webpack.config.development.js",
    "build:umd:min": "webpack src/ace.jsx dist/react-ace.min.js --config webpack.config.production.js",
    "build:example": "cd example && npm install",
    "build": "npm run build:lib && npm run build:umd && npm run build:umd:min",
    "check": "npm run lint",
    "preversion": "npm run clean && npm run check",
    "version": "npm run build",
    "postversion": "git push && git push --tags && npm run clean",
    "prepublish": "npm run clean && npm run build",
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "babel": {
    "presets": [
      "es2015",
      "react"
    ]
  },
  "author": "Kyle Smith",
  "license": "MIT",
  "devDependencies": {
    "babel": "^6.5.2",
    "babel-cli": "^6.6.5",
    "babel-core": "^6.7.5",
    "babel-loader": "^6.2.4",
    "babel-preset-es2015": "^6.6.0",
    "babel-preset-react": "^6.5.0",
    "eslint": "^1.10.3",
    "eslint-config-airbnb": "^2.1.1",
    "eslint-plugin-react": "^3.13.1",
    "jest": "^0.1.37",
    "rimraf": "^2.5.2",
    "webpack": "^1.12.14"
  },
  "keywords": [
    "ace",
    "ace editor",
    "react-component",
    "react",
    "brace"
  ],
  "dependencies": {
    "brace": "^0.8.0",
    "lodash.isequal": "^4.1.1"
  },
  "peerDependencies": {
    "react": "^0.13.0 || ^0.14.0 || ^15.0.1"
  },
  "repository": {
    "type": "git",
    "url": "http://github.com/securingsincity/react-ace.git"
  }
}
