{
  "name": "react-ace",
  "version": "9.5.0",
  "description": "A react component for Ace Editor",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "scripts": {
    "prettier": "prettier --write \"src/**\" \"example/*.js\"",
    "clean": "rimraf lib dist",
    "lint": "tslint src/*",
    "build:lib": "tsc",
    "build:umd": "webpack ./src/index.ts -o dist/react-ace.js --config webpack.config.development.js",
    "build:umd:min": "webpack ./src/index.ts -o dist/react-ace.min.js --config webpack.config.production.js",
    "example": "webpack-dev-server --config webpack.config.example.js",
    "build:example": "webpack --config webpack.config.example.js",
    "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",
    "prepublishOnly": "npm run clean && npm run build",
    "test": "_mocha --require ts-node/register --require @babel/register --require tests/setup.js tests/src/*.spec.js --exit",
    "coverage": "nyc npm run test",
    "prepare": "npm run build:lib"
  },
  "author": "James Hrisho",
  "license": "MIT",
  "devDependencies": {
    "@babel/cli": "^7.15.7",
    "@babel/core": "^7.15.8",
    "@babel/preset-env": "^7.15.8",
    "@babel/preset-react": "^7.14.5",
    "@babel/register": "^7.15.3",
    "@types/chai": "^4.2.22",
    "@types/enzyme": "^3.10.10",
    "@types/enzyme-adapter-react-16": "^1.0.6",
    "@types/lodash": "^4.14.176",
    "@types/mocha": "^9.0.0",
    "@types/node": "^15.14.9",
    "@types/prop-types": "^15.7.4",
    "@types/react": "^17.0.31",
    "@types/react-dom": "^17.0.10",
    "@types/sinon": "^10.0.4",
    "babel-eslint": "^10.1.0",
    "babel-loader": "^8.2.3",
    "chai": "^4.3.4",
    "coveralls": "^3.1.1",
    "enzyme": "^3.11.0",
    "enzyme-adapter-react-16": "^1.15.6",
    "eslint": "^7.32.0",
    "eslint-plugin-import": "^2.25.2",
    "eslint-plugin-jsx-a11y": "^6.4.1",
    "eslint-plugin-react": "^7.26.1",
    "husky": "^7.0.4",
    "jsdom": "18.0.0",
    "minimist": ">=1.2.5",
    "mocha": "9.1.3",
    "node-forge": ">=0.10.0",
    "nyc": "15.1.0",
    "prettier": "^2.4.1",
    "pretty-quick": "^3.1.1",
    "react": "^16.8.6",
    "react-dom": "^16.8.6",
    "react-test-renderer": "^16.14.0",
    "rimraf": "3.0.2",
    "sinon": "11.1.2",
    "ts-loader": "^9.2.6",
    "ts-node": "^10.3.1",
    "tslint": "^6.1.3",
    "tslint-react": "^5.0.0",
    "typescript": "^4.4.4",
    "webpack": "5.59.1",
    "webpack-cli": "4.9.1",
    "webpack-dev-server": "4.3.1"
  },
  "keywords": [
    "ace",
    "ace editor",
    "react-component",
    "react"
  ],
  "dependencies": {
    "ace-builds": "^1.4.13",
    "diff-match-patch": "^1.0.5",
    "lodash.get": "^4.4.2",
    "lodash.isequal": "^4.5.0",
    "prop-types": "^15.7.2"
  },
  "husky": {
    "hooks": {
      "pre-commit": "pretty-quick --staged"
    }
  },
  "peerDependencies": {
    "react": "^0.13.0 || ^0.14.0 || ^15.0.1 || ^16.0.0 || ^17.0.0",
    "react-dom": "^0.13.0 || ^0.14.0 || ^15.0.1 || ^16.0.0 || ^17.0.0"
  },
  "nyc": {
    "exclude": [
      "**/*.spec.js",
      "**/setup.js",
      "node_modules"
    ],
    "extension": [
      ".js",
      ".jsx",
      ".tsx",
      ".ts"
    ],
    "reporter": [
      "lcov",
      "text-lcov",
      "text",
      "html"
    ]
  },
  "repository": {
    "type": "git",
    "url": "http://github.com/securingsincity/react-ace.git"
  },
  "prettier": {
    "singleQuote": false,
    "trailingComma": "none",
    "arrowParens": "avoid"
  }
}
