{
  "name": "react-formable",
  "version": "2.4.0",
  "description": "A flexible form library for react",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "contributors": [
    {
      "name": "Matt O'Connell"
    },
    {
      "name": "Kevin Welcher"
    },
    {
      "name": "Christine Bryant-Ryback"
    }
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/willowtreeapps/react-formable.git"
  },
  "bugs": {
    "url": "https://github.com/willowtreeapps/react-formable/issues"
  },
  "keywords": ["react", "react-component", "form"],
  "directories": {
    "example": "dist/index"
  },
  "scripts": {
    "test": "yarn && jest",
    "build": "yarn && jest && rm -rf dist && tsc",
    "start": "yarn && parcel ./examples/index.html",
    "deploy": "yarn && yarn run build && npm publish",
    "precommit": "lint-staged",
    "prettier": "prettier --write \"./**/*.{tsx,ts,js,json}\""
  },
  "lint-staged": {
    "*.{js,ts,tsx,json}": [
      "prettier --write \"./**/*.{tsx,ts,js,json}\"",
      "git add"
    ]
  },
  "author": "Willowtree",
  "license": "MIT",
  "devDependencies": {
    "@types/enzyme": "3.1.6",
    "@types/jest": "22.0.0",
    "@types/react-dom": "16.0.3",
    "enzyme": "3.3.0",
    "enzyme-adapter-react-16": "^1.1.1",
    "enzyme-react-16-adapter-setup": "^0.1.0",
    "jest": "22.0.4",
    "lint-staged": "^6.0.0",
    "material-ui": "0.20.0",
    "parcel-bundler": "^1.3.1",
    "prettier": "^1.9.2",
    "raf": "^3.4.0",
    "react": "16.2.0",
    "react-dom": "16.2.0",
    "react-tap-event-plugin": "3.0.2",
    "ts-jest": "^22.0.0",
    "typescript": "^2.6.2"
  },
  "dependencies": {
    "lodash.debounce": "^4"
  },
  "peerDependencies": {
    "react": ">=15 <17"
  },
  "prettier": {
    "printWidth": 80,
    "tabWidth": 2,
    "useTabs": false,
    "semi": false,
    "singleQuote": true,
    "trailingComma": "es5",
    "bracketSpacing": true,
    "jsxBracketSameLine": true
  },
  "jest": {
    "transform": {
      "^.+\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
    },
    "testPathIgnorePatterns": ["dist"],
    "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
    "moduleFileExtensions": ["ts", "tsx", "js", "json"],
    "modulePaths": ["src/", "node_modules"],
    "moduleDirectories": ["node_modules", "src/ts"],
    "setupFiles": ["enzyme-react-16-adapter-setup", "raf/polyfill"]
  }
}
