{
  "name": "draft-convert",
  "version": "1.4.10",
  "description": "Extensibly serialize & deserialize Draft.js ContentState",
  "main": "lib/index.js",
  "repository": "HubSpot/draft-convert",
  "scripts": {
    "build": "npm run build:commonjs && npm run build:umd && npm run build:umd:min",
    "build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
    "build:umd": "webpack --config webpack.config.development.js ./src/index.js ./dist/draft-convert.js",
    "build:umd:min": "webpack --config webpack.config.production.js ./src/index.js ./dist/draft-convert.min.js",
    "jest": "jest",
    "jest:watch": "jest --watch",
    "jest:debug": "node --debug-brk --inspect ./node_modules/.bin/jest -i",
    "test-once": "npm run jest",
    "test": "npm run jest",
    "test:karma": "karma start test/karma.config.js",
    "test-once:karma": "karma start test/karma.config.js --single-run",
    "clean": "rimraf ./dist && rimraf ./lib",
    "build-and-test": "npm run clean && npm run build && npm run test-once",
    "lint": "eslint src/ test/",
    "prepublish": "npm run lint && npm run build-and-test"
  },
  "files": [
    "dist",
    "lib"
  ],
  "keywords": [
    "draft",
    "draftjs",
    "draft-convert",
    "convert"
  ],
  "author": "bbriggs@hubspot.com",
  "license": "Apache-2.0",
  "peerDependencies": {
    "draft-js": ">=0.7.0",
    "react": "^15.0.2",
    "react-dom": "^15.0.2"
  },
  "dependencies": {
    "immutable": "~3.7.4",
    "invariant": "^2.2.1"
  },
  "devDependencies": {
    "babel-cli": "^6.10.1",
    "babel-core": "^6.7.7",
    "babel-eslint": "^7.1.1",
    "babel-jest": "^18.0.0",
    "babel-loader": "^6.2.4",
    "babel-preset-es2015": "^6.6.0",
    "babel-preset-react": "^6.5.0",
    "cross-env": "^3.1.4",
    "draft-js": "^0.8.1",
    "eslint": "3.12.0",
    "eslint-config-hubspot": "^7.0.0",
    "eslint-plugin-react": "6.8.0",
    "jasmine": "^2.2.0",
    "jest": "^18.1.0",
    "karma": "^0.13.22",
    "karma-chrome-launcher": "^0.2.3",
    "karma-jasmine": "^0.3.8",
    "karma-webpack": "^1.7.0",
    "react": "^15.4.2",
    "react-dom": "^15.4.2",
    "rimraf": "2.5.4",
    "webpack": "^1.13.0"
  },
  "jest": {
    "testRegex": "/test/spec/.*\\.js$"
  }
}
